Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
all groups > inetserver asp general > july 2007 > threads for july 22 - 28, 2007

Filter by week: 1 2 3 4 5

URL rewriting with ASP
Posted by daddywhite at 7/28/2007 5:23:38 AM
I need to rewrite a URL like: FROM: /mypage.asp?my_id=78 TO: /contact-us Where contact us is the name of that page stored ion a database. I can easily use a ISAPI filter to change it to: /page/78/contact-us HOWEVER i do not want the "78" in the URL. The reason for this is that ...more >>


XML Content Type
Posted by Jim at 7/27/2007 7:22:02 AM
Does anyone know why Response.AddHeader "Refresh" does not work when Response.ContentType = "text/xml"? The code is very short: <% Response.ContentType = "text/xml" Response.AddHeader "Refresh", "5;URL=http://localhost/ReturnXML2.asp" %> <CiscoIPPhoneImage> <LocationX>-1</LocationX> ...more >>

errors while connecting to Sql server with DSN connect
Posted by Swagener at 7/27/2007 12:00:00 AM
The aim is to get it working on this machine so I can port everything to a Enterprise Version but can't get around this error for the last two days. Any help is much appreciated, as I am not getting any further with this. Internet Explorer Error: HTTP 500.100 - Internal Server Error - ASP err...more >>

Returning recordsets from a stored procedure
Posted by stjulian at 7/27/2007 12:00:00 AM
(IIS 6.0, SQL Server 2000) I have a block of code that populates a recordset from a stored procedure. The problem is, the recordset seems to be forward only (which would be OK), but can't jump with the "AbsolutePage" property (which isn't OK) How do I define the recordset that will allow thi...more >>

Set File/User Permission with ASP/VBScript to a File
Posted by david.didonato NO[at]SPAM gmail.com at 7/26/2007 2:35:58 PM
hi i would like to add a user and set file permission to a file with ASP. (No component). is that possible ? do you have a link ? an example ? thanks david ...more >>

MSXML2.XMLHTTP.3.0 error
Posted by Dave at 7/26/2007 10:32:21 AM
I am running the following code and I get an error: Set xmlHttp = Server.CreateObject("MSXML2.XMLHTTP.3.0") xmlHttp.Open "Get", URLToRSS, false xmlHttp.Send RSSXML = xmlHttp.ResponseText The error is: msxml3.dll error '800c0005' The system cannot locate the resource specified. It p...more >>

Will ASP 2.0 pages be able to consume webservices
Posted by Microsoft-DayLightSaving at 7/26/2007 2:20:02 AM
Hi all, Could anyone tell me where ASP 2.0 will be able to consume webservices provided by a application running on .Net? our Application is running on IIS 5 thanks Pradeep.V...more >>

Can ASP 2.0 consume webservice
Posted by Microsoft-DayLightSaving at 7/26/2007 2:06:05 AM
Hi all, Could anyone tell us where ASP ver 2.0 will be able to consume websevices which is built on .net framework, ASP 2.0 runs on IIS 5 server. Thanks, Pradeep.V...more >>



Help needed
Posted by suryadevara.srinath NO[at]SPAM gmail.com at 7/25/2007 9:53:57 PM
Hi All, Can any body give me a clear cut idea on HTTP Header CRLF Injection (HTTP Response Splitting) Thanks, Suryadevara ...more >>

Timeout value & session variables
Posted by doug at 7/25/2007 4:20:01 PM
I support several intranet sites one of which had NO STATE. Even though content has ASP extensions, it was all rendered HTML. Site had NO session or application variables being managed. Site had no global.asa. IIS Manager had site timeout set to 20 minutes. We had to add an ASP includ...more >>

ASP FSO File Name Problem
Posted by KEN at 7/25/2007 3:52:14 PM
I have a script that reads a directory and creates a xml doc based on that directory. I just got the file count and walked through it adding lines to the xml. I used While int(filecount) >= b xml_to_silo_string3 = xml_to_silo_string3 & "<FILE" & b &">" xml_to_silo_string3 = xml_to_silo_s...more >>

putting C# classes in App_Code
Posted by accessing C# classes in App_Code at 7/24/2007 1:54:02 PM
I've a simple aspx page whose code behind instantiates a simple class which exists in a .cs file in the App_Code folder of my project. Runs fine in the IDE. When I copy the app to my IIS server I get this error in my browser: Compilation Error Description: An error occurred during the compi...more >>

need help updating mulitple records w/ Checkboxes
Posted by bcap at 7/24/2007 7:28:18 AM
Hello, I really would apprciate help! =) What I want to do is be able to change the status of mulitple records using a drop down and a checkbox. I have a drop down called "ChangeStatus" with the values to change the status to Pending, Accepted, Declined, Cancelled, Completed. In the st...more >>

populate dropdown from sproc
Posted by Mike P at 7/24/2007 6:25:15 AM
I am trying to populate a dropdown from a stored procedure, but I am getting the error 'Object doesn't support this property or method: 'Next' : <!--#include file="include_connection.asp"--> <!--#include file="adovbs.inc"--> <% set objConn = server.createobject("adodb.connection") obj...more >>

Response.Redirect problem to secure server
Posted by Lasse Edsvik at 7/24/2007 12:00:00 AM
Hello I have a strange problem, I'm using Debitech for a system that handles payments. And I have this Response.Redirect(https://long address) that is sent to their server with a long querystring. For some reason Response.Redirect renders a "Page cannot be displayed" error (and no asp-error) ...more >>

Moving from ASP Sessions to Database Sessions
Posted by Bookham Measures at 7/23/2007 4:48:41 PM
Hello We are planning to set-up a load balanced web environment. Accordingly, we are going to change the session management on our website from the classic ASP Session State and session variables, to a database method. Does any one have any pointers as to how I might approach this, so tha...more >>

getting Reffering site info
Posted by TdarTdar at 7/23/2007 11:00:03 AM
Hello, I want to get reffering site info like if the way they got to the site is from google, While that is easy enough, of course, but I want to get that info after they have been on the site for a while, I was thinking that I could get the reffer in the session_onstart event, and make it ...more >>

Strange <table> behaviour
Posted by Francisco Ramos at 7/23/2007 2:32:01 AM
Hello all I'm getting a very strange behaviour with my <table> html elements when designing my aspx. See this screenshot: http://personales.gestion.unican.es/ramosf/strangetables.jpg This screen is formed by several frames. The top table has 2 rows, one being 100% with (correct) and one...more >>

Help needed for ASPUpload - Cannot access Form elements
Posted by Sagar at 7/22/2007 9:51:21 AM
Hi, I wrote this simple code to use the ASPUpload component within my asp page. I have ASPUpload 3.0 installed. The problem is, Iam not able to access the Form collection items with the Uploader object. Can anyone help ? Heres the code. <% Dim Uploader Set Uploader = Server.CreateObject(...more >>


DevelopmentNow Blog