You are here:
| Subject | Date Asked |
| ASP | 3/23/2010 |
| Q: I am setting up the Hit counter in my ASP document and was working when i open the document but the ... A: Sorry but I'm not sure what you want to do. Are you trying to count the number of times someone ... | |
| ASP | 3/14/2010 |
| Q: i m developing a website in asp as my final years project. i want to give facility to upload images ... A: If you are using ASP you will need a third party dll to allow you to upload files. If you were using ... | |
| building a constant | 1/18/2010 |
| Q: I am building a page that takes an input from a form and queries a database from it. For the sake of ... A: Can you not try somthing like this, excuse me if this is abit sketchy I don't really use ASP now. ... | |
| Database driven Discussion forum | 12/11/2009 |
| Q: I want to develop a database driven discussion forum (like Yahoo answers). At the moment I have an ... A: If you can I would really look to use ASP.NET for your forum. I've now moved in to ASP.NET C#. ... | |
| PayPal Payment processing? + ASP | 10/20/2009 |
| Q: I wanted to make a simple order processing website with ASP/VBScript with a backend database BUT i ... A: Yes its possible. This is the best place to start:- https://developer.paypal.com/ They have all the ... | |
| Data in memory | 10/15/2009 |
| Q: In ASP if you have a grid on a page where the user will be adding data (rows). How can all the rows ... A: There is no full proof way of detecting if a user has left the site or closed the browser window. I ... | |
| Visual Web Developer Express Edition | 10/14/2009 |
| Q: Greetings, I have recently downloaded and installed Microsoft Web Developer 2008 Express (along ... A: I'm not really an expert in this area but I will try and help. What is the difference between ‘New ... | |
| Retrieves images from SQL in ASP.NET | 9/14/2009 |
| Q: I have been trying to retrieves images from a SQL SERVER database and show them in a ASP.NET ... A: Sorry in the delay in getting back to you, been very busy at work. I came across this problem ... | |
| Upload, Edit and Read a Text File using ASP 3.0 | 5/8/2009 |
| Q: Can you give me a clear example of ASP 3.0 script that allows me to upload a text file to the web ... A: First of all you'll need to purchase a component that will allow you to upload files, if you google ... | |
| bypass browser | 4/16/2009 |
| Q: Ashley: I am not sure who to ask, so I thought I might try you. Can you give me an idea of where ... A: The only way I can think of doing this is accessing the database directly, this would be the best ... | |
| input validation | 3/28/2009 |
| Q: i m doing my final project in asp i have the following problems 1.if a form need numaric data so ... A: Two ways to do this, you can validate the form using Javascript, this is probably the best way. Or ... | |
| Localhost credential error | 3/18/2009 |
| Q: Good day. Im a student who is practicing my degree as a programmer. Now i am trying to make use of ... A: Try this, go in to iis and right click on the default website and then click on properties. Click ... | |
| Get inserted Record ID | 3/4/2009 |
| Q: I will Get Right to it. I am using classic asp pages to develop my site. I am trying to query the ... A: sql_insert = "set nocount on ; insert into reservas (turnier_id, firstname, lastname, xtel, xdni, ... | |
| query database | 3/4/2009 |
| Q: I will Get Right to it. I am using classic asp pages to develop my site. I am trying to query the ... A: <% Dim Conn Dim SQLTemp Set Conn = Server.CreateObject("ADODB.Connection") Conn.connectionstring = ... | |
| Weird ASP/DAtabase Error | 2/25/2009 |
| Q: I have a very strange error that I'm getting. I assume it is from the delete function because all my ... A: You say your index are getting screwed up? Are the primary keys? Any chance of sending a sample of ... | |
| Convert string into date...using ASP | 2/12/2009 |
| Q: I am having trouble converting a string in the format of YYYY-MM-DD into MM/DD/YYYY. I tried using ... A: Your best bet is to check if its null before trying to display it. Is the error coming up on this ... | |
| VBS onChange Run SQL statment | 2/6/2009 |
| Q: I am not sure if this can be done but I will ask. I have a List/Menu field "txtMan" that has VB ... A: If you were to do this in .NET it wouldn't be a problem as the onChange is an event on a control. ... | |
| apostrophie error | 7/22/2008 |
| Q: if i input a name say O'neill in the User textbox insert statement produces an error.. Please can ... A: replace sSQL = "Insert into Detail values('" & Request("SerialNumber")& "', '" & ... | |
| asp update | 7/16/2008 |
| Q: my update code runs and executes but does not update the database, can u please help. <% sSQL = ... A: if that didn't print anything out then there is something wrong with If Request("Submit") = ... | |
| Using another db's tables | 3/14/2008 |
| Q: I have 2 separated SQL server databases on 2 machines: db1 on computer1 and db2 on computer2. I want ... A: Do you have login details for both databases? If you do you can set up a DTA data transformation ... | |
| Open Crystal report 9 from ASP | 3/10/2008 |
| Q: I am a webdeveloper working in one of the county organization. I need some help in to open crystal ... A: Are you trying to open the .rpt file and then convert to pdf to print? if your just trying to view ... | |
| Share data on a web page? | 3/10/2008 |
| Q: I call prospects and qualify them on the phone then pass them along to my client, a debt settlement ... A: I do not know of a company that does this, how ever if I have understood the scenario it wouldn't be ... | |
| cdosys | 3/4/2008 |
| Q: I dont know how send a mail with delivery notification from my asp page using CDOSYS A: This article should help you:- http://support.microsoft.com/default.aspx?scid=kb;en-us;Q302839 Just ... | |
| hyperlink to open a disk file | 2/20/2008 |
| Q: In html page I can open a disk file with this code: <a ... A: where the files are kept you will have to set it so they are shared. If you reference it as file ... | |
| errror to find username ldap adsi | 2/14/2008 |
| Q: Why ???? If i use sUserName = "OI24683" the script work fine instead if i use sUserName = ... A: are you familar with IIS (Internet Information Services) You will need to do the following:- right ... | |
| errror to find username ldap adsi | 2/14/2008 |
| Q: Why ???? If i use sUserName = "OI24683" the script work fine instead if i use sUserName = ... A: Try this <% if Request.ServerVariables("LOGON_USER") = "" then ntusername = "" else ... | |
| errror to find username ldap adsi | 2/13/2008 |
| Q: Why ???? If i use sUserName = "OI24683" the script work fine instead if i use sUserName = ... A: If you do a response.write for Request.ServerVariables("LOGON_USER") you should find the username ... | |
| asp | 2/8/2008 |
| Q: how can i attach an asp script to a button ANSWER: Do you want to the script to execute some asp ... A: ok, for a button you would or could do this in a page called nameofpage.asp <%if request("submit") ... | |
| Custom Windows Authentication Login Box | 1/10/2008 |
| Q: The site made me start a new question stating that there were too many follow ups. They don't use ... A: Ok, from my point and using asp you will have to go down the LDAP root. I think you will need to set ... | |
| Custom Windows Authentication Login Box | 1/10/2008 |
| Q: I have an ASP site that I want to password protect for a few users (about 10). I want to use Windows ... A: Ok, when they logon to the network, do they use the Remote Desktop to browse and work from home on? ... | |
| Custom Windows Authentication Login Box | 1/10/2008 |
| Q: I have an ASP site that I want to password protect for a few users (about 10). I want to use Windows ... A: Ok, Are your users logging on to the network? You can try and bind directly to active directory. I ... | |
| Custom Windows Authentication Login Box | 1/9/2008 |
| Q: I have an ASP site that I want to password protect for a few users (about 10). I want to use Windows ... A: To get the users windows login id you would have to set Windows integrated Authentication on the ... | |
Answers by Expert:
Top Expert on this page
Main focus is ASP, SQL Server 2000 & 2005
Over 6 years experience.
Education/Credentials
BCs Honours Software Design and Networks

©2012 About.com, a part of The New York Times Company. All rights reserved.