Ask a Question related to ASP, Design and Development.
-
Jeremy #1
Testing on XP pro stopped working
I was working on an asp and it was working fine. I came back to it a
few days later and it was no longer working... When I submit a form
through the ASP page, it only spits back the raw code, but doesn't
write to access as it was before... I don't know what has chenged.
Any suggestions? FYI here is the code (simplified...This does the
same...) thanks!
Jeremy
<% LANGUAGE="VBScript"
First = Request.form("First")
set responseDB = server.createobject("ADODB.Connection")
responseDB.open "driver={Microsoft Access Driver
(*.mdb)};DBQ=new.mdb;Uid=Admin"
sqlText = "INSERT INTO Results (First)"
sqlText = sqlText & " VALUES("
sqlText = sqlText & "'" & First & "'"
sqlText = sqlText & ")"
Response.Write sqlText
set ReturnSet = responseDB.Execute(sqlText)
Response.Write "Record Added"
%>
Jeremy Guest
-
Roll Over Stopped working
I've created a pdf which has rollover buttons, up and over, simply. They work great but I have them opening a new pdf in the same window when... -
#38816 [Opn]: PHP code that was working perfectly recently stopped working.
ID: 38816 User updated by: mtoohee at gmail dot com -Summary: PHP code that was working perfectly recently stopped.... -
filesystemobject stopped working
Hello experts, I am running a web server on my WinXP machine. I have used several ASP programs to build and display a guest book and also... -
ASP stopped working in IIS 5
Take a look at the thread with almost the same subject from about an hour prior to yours. Also take a look at http://www.aspfaq.com/2109. Ray at... -
My PE2 stopped working on my E-Mac
Hi can someone help out there ? I have E-mac with 768 MB RAM. My PE2 has approximately 5400 pictures and I have been tranferring this pictures to... -
Ray at #2
Re: Testing on XP pro stopped working
Are you accessing this in your browser via:
[url]http://localhost/page.asp[/url]
or
C:\inetpub\wwwroot\page.asp
You have to access it via http for it to pass through IIS, not the file
system.
Ray at home
"Jeremy" <jeremy_zifchock@yahoo.com> wrote in message
news:f9d85033.0310261925.5c041162@posting.google.c om...> I was working on an asp and it was working fine. I came back to it a
> few days later and it was no longer working... When I submit a form
> through the ASP page, it only spits back the raw code, but doesn't
> write to access as it was before... I don't know what has chenged.
> Any suggestions? FYI here is the code (simplified...This does the
> same...) thanks!
>
> Jeremy
>
> <% LANGUAGE="VBScript"
>
> First = Request.form("First")
>
> set responseDB = server.createobject("ADODB.Connection")
> responseDB.open "driver={Microsoft Access Driver
> (*.mdb)};DBQ=new.mdb;Uid=Admin"
>
> sqlText = "INSERT INTO Results (First)"
> sqlText = sqlText & " VALUES("
> sqlText = sqlText & "'" & First & "'"
> sqlText = sqlText & ")"
>
> Response.Write sqlText
>
> set ReturnSet = responseDB.Execute(sqlText)
>
> Response.Write "Record Added"
>
> %>
Ray at Guest
-
TomB #3
Re: Testing on XP pro stopped working
Your first line should be
<%@ Language="VBScript"%>
"Jeremy" <jeremy_zifchock@yahoo.com> wrote in message
news:f9d85033.0310261925.5c041162@posting.google.c om...> I was working on an asp and it was working fine. I came back to it a
> few days later and it was no longer working... When I submit a form
> through the ASP page, it only spits back the raw code, but doesn't
> write to access as it was before... I don't know what has chenged.
> Any suggestions? FYI here is the code (simplified...This does the
> same...) thanks!
>
> Jeremy
>
> <% LANGUAGE="VBScript"
>
> First = Request.form("First")
>
> set responseDB = server.createobject("ADODB.Connection")
> responseDB.open "driver={Microsoft Access Driver
> (*.mdb)};DBQ=new.mdb;Uid=Admin"
>
> sqlText = "INSERT INTO Results (First)"
> sqlText = sqlText & " VALUES("
> sqlText = sqlText & "'" & First & "'"
> sqlText = sqlText & ")"
>
> Response.Write sqlText
>
> set ReturnSet = responseDB.Execute(sqlText)
>
> Response.Write "Record Added"
>
> %>
TomB Guest



Reply With Quote

