Advertisement

250 organizations, including eBay, Ericsson and Lockheed Martin, now work smarter with Corporate Accounts. Save up to 42%

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Time Tested ASP Solutions: 1 - 25 of 2788
 
I need to be able to refresh a ASPX page if the current data being displayed has changed. How could this be done?    - Marc
Hi I was trying to run a WScript.Shell command on the server so that i can zip the files in a folder. But to test it out i was trying to just do a simple command <%   set wshell = serv...
I am trying to make a client-side vbscript sleep but can't do it w/o pinning the cpu The Code is below, pretty straight forward, but I get the following error: error: object doesn't supp...
I have a SQL 2000 table that has jersey numbers as a column (jerNumber). This column is a varchar(3) because I have to enter values such as 00, 04, 08, etc. Making this an int column is not an...
Hi, I'm getting a date from a table, and then I want to save it to another table, but I want to save the date in the format dd/mm/yyyy... how do I do that? I don't want to get any 5/5/2004......
I am getting this error when the number of records are  returning more data.(above 3000 records) Response object, ASP 0251 (0x80004005) Execution of the ASP page caused the Response Buffer...
Hi all, I've got an issue with a script that uses the WScript.Shell.  The problem is that I keep getting a permission denied error. I've set permissions on the folder, the file, and even "...
Firstly, I am not a web designer by any means.  My company has a 3rd party do the design and well apparently they don't know exactly what they are doing.  I have been fixing the designers page...
I am having difficulty with invoking the Scripting.FileSystemObject ActiveX Component via ASP. I am using IIS 5.1 on a Windows XP Professional system. I keep recieving "Error Type: Microsoft V...
Provider error '80004005' Unspecified error /submitresults.asp, line 46 Hello, I see that this is quite a common problem but no one seems to have an answer, searching on google ...
I'm trying to create a serialized identification string, where the first 4 characters are letters and the last 5 characters are numbers.  To create a new ID, I get the maximum ID string from t...
Does ASP provide the capability to do a Try Catch Finally.  I know ASP.net has it, buy I am using just .asp pages.  I can put in the following code and this is the error I get: <% ... Try...
I'm trying to execute an SQL statement in a loop that contains some strings which have single quotes ( ' ) in the text of the string.  I've set the SQL statement itself as a string so then I c...
First of all, I have read all of the solutions I could possibly find for this issue.  Secondly, none of them work for me. I am using: WinXP Pro SP2, VB6, ASP Here is a breakdown of my pr...
I'm runnning asp based web site under win2k3. The database is a system DSN using the Microsoft Access Driver (.mdb) Everything was fine under win2k and I upgraded to win2k3 about 2 wee...
I have a query that retrieves records from a db, which i dispaly in a table. However I would also like to create a csv file and also allow the user to save it. How do i go about doing this? As...
I have an excel file in the following format: ColumnName _____________ TEST TEST05 11TEST02 123455 98666 VALUE09 I need to use VBScript to read the data from the file into an ar...
Response object error 'ASP 0251 : 80004005' Response Buffer Limit Exceeded /asp/article.asp, line 0 Execution of the ASP page caused the Response Buffer to exceed its configured limit. ...
Need help using cmd to execute and display an application. I have tried Aspexec, but apparently in windows 2k sp5 it does not work, I can see the processes running in the background but can ne...
ASP3, trying to access an element id: Here is the element: <input type="TEXT" size="36" name="Contact Name" id="210"> And I am trying to do something simple in VBSCRIPT: dim el dim ...
Hi, I actually have a close button, where when i click, the window should close. However, this is what i have: <INPUT type="submit" value="Close" name=Submit onclick="window.close()"> ...
I have the following statement in my ASP page: <a href="DownloadFile.asp?File=<%= Server.URLEncode(myFile.Name) %>"><% Response.Write myFile.Name %></a> On clicking the link, the code on...
Here is the code i have on a page... <% Response.AddHeader "Content-Disposition", "attachment; filename=PressRelease.pdf" Response.ContentType = "application/pdf" Response.Write("I am her...
Hey, I'm trying to validate a phone number field on a form, but have minimal knowledge of regular expressions. Here's what I'm currently using as a validation expression: ((\(\d{3}\) ?)|(\d{3}...
by doing this <body> <% Set objConn = Server.CreateObject ("ADODB.Connection")      objConn.Open "mainnews" Set objRec=Server.CreateObject("ADODB.Recordset")      objRec.Open "news",strConnect...