Ask a Question related to ASP Database, Design and Development.
-
simhadri srikanth #1
asp
plz send asp in details
-----------------------------
This message is posted by [url]http://Asp.ForumsZone.com[/url]
simhadri srikanth Guest
-
Ray at #2
Re: asp
<%
code
%>
Ray at work
"simhadri srikanth" <simhadris@innoga.com> wrote in message
news:92936494746886@Asp.ForumsZone.com...> plz send asp in details
>
> -----------------------------
> This message is posted by [url]http://Asp.ForumsZone.com[/url]
>
Ray at Guest
-
Bob Barrows #3
Re: asp
Really? I just tried it again and it works fine for me. Try this:
[url]http://msdn.microsoft.com/nhp/default.asp?contentid=28000522&frame=true[/url]
Bob
Ray at <%=sLocation%> wrote:> Nice link:
>
>
> Active Server Pages error 'ASP 0113'
>
> Script timed out
>
> /nhp/default.asp
>
> The maximum amount of time for a script to execute was exceeded. You
> can change this limit by specifying a new value for the property
> Server.ScriptTimeout or by changing the value in the IIS
> administration tools.
>
>
>
> Ray at work
>
> "Bob Barrows" <reb_01501@yahoo.com> wrote in message
> news:ORw7rRWQDHA.3192@TK2MSFTNGP10.phx.gbl...>> [url]http://msdn.microsoft.com/nhp/default.asp?contentid=28000522[/url]
>>
>> simhadri srikanth wrote:>>> plz send asp in details
>>>
>>> -----------------------------
>>> This message is posted by [url]http://Asp.ForumsZone.com[/url]
Bob Barrows Guest
-
Bob Barrows #4
Re: asp
How about this one:
[url]http://msdn.microsoft.com/library/en-us/dnasp/html/aspover.asp[/url]
Ray at <%=sLocation%> wrote:> Nice link:
>
>
> Active Server Pages error 'ASP 0113'
>
> Script timed out
>
> /nhp/default.asp
>
> The maximum amount of time for a script to execute was exceeded. You
> can change this limit by specifying a new value for the property
> Server.ScriptTimeout or by changing the value in the IIS
> administration tools.
>
>
>
> Ray at work
>
> "Bob Barrows" <reb_01501@yahoo.com> wrote in message
> news:ORw7rRWQDHA.3192@TK2MSFTNGP10.phx.gbl...>> [url]http://msdn.microsoft.com/nhp/default.asp?contentid=28000522[/url]
>>
>> simhadri srikanth wrote:>>> plz send asp in details
>>>
>>> -----------------------------
>>> This message is posted by [url]http://Asp.ForumsZone.com[/url]
Bob Barrows Guest
-
John Blessing #5
Re: ASP
"Wayne & Carr" <spam@spam.net> wrote in message
news:O3zi0Q5QDHA.2096@TK2MSFTNGP12.phx.gbl...wrong> Could someone please have a look at this code and let me know what issame> with it?
> I am getting the following error page for line "15 "
>
> ADODB.Recordset error '800a0cc1'
>
> Item cannot be found in the collection corresponding to the requested name
> or ordinal.
>
> /Cat9/Data_Prog/Feedadd.asp, line 15
>
>
> Also could someone please let me know what I am doing wrong with the
> "Response.Redirect"
> I have "2" lines of code below that are both "Redirects" (But go to theon> place)
> I need the lines to go exactly when the "art_id" is. Could someone assistthat> it please?
>
> The art_id = is the "Article ID" AutoNumber Key of the Database.
> This is the Number that is assigned to all of the Pages that are created.
> In the below example, it is going to article Number "?" Which ever oneResponse.Redirect("files/CodeDelphi.asp?art_id=<%=(MembPages.Fields.Item("a r> was responded from.
>
> Thank You
> Wayne
>
> Here is the Table - Form
> ------------------
> Submit.asp
> ----------
> <table width="102%" border="0" height="138">
> <form method="POST" action="../Feedadd.asp">
> <tr> <td>
> <input type="text" name="Name"
> style="background-color:#05B7FA;color:#ffffff;">
> </td></tr><tr>
> <td height="96">
> <textarea name="Comments" cols="50" rows="8"></textarea>
> <input type="submit" name="Submit" value="Submit">
> </td> </tr></form></table>
> __________________
>
> Here is the page that is being called:
> --------------------------
> Feedadd.asp
> -------------
> <%
> set conn = Server.CreateObject("ADODB.Connection")
> conn.Provider = "Microsoft.JET.OLEDB.4.0;Data Source=" &
> Server.MapPath("/") & "/Cat9/Data_Prog/Data/db.mdb"
> set rs = Server.CreateObject("ADODB.Recordset")
> dim vals(1)
> vals(0) = Request.Form("Name")
> vals(1) = Request.Form("Comments")
>
> dim flds(1)
> flds(0) = "Name"
> flds(1) = "Comments"
>
> conn.Open()
> rs.Open "UserArticles", conn, 1, 3, 2
> rs.AddNew flds, vals
> rs.Update
> rs.Close()
> conn.Close()
> set rs = nothing
> set conn = nothing
> Response.Redirect("files/CodeDelphi.asp?art_id=<%=("art_id").Value)%>")
>
>> t_id").Value)%>")
>
> %>What is ("art_id").Value ???>>Response.Redirect("files/CodeDelphi.asp?art_id=<%=("art_id").Value)%>")
You are not referring to your recordset and even if you were, you have
already closed this.
--
John Blessing
[url]http://www.LbeHelpdesk.com[/url] - Help Desk software at affordable prices
[url]http://www.free-helpdesk.com[/url] - Completely free help desk software !
[url]http://www.lbetoolbox.com[/url] - Remove Duplicates from MS Outlook
[url]http://www.lbesync.com[/url] - Synchronize two Outlook Personal Folders
John Blessing Guest
-
Wayne & Carr #6
Re: ASP
I have this one licked.
I figured it out.
Thanks All
Wayne
Wayne & Carr Guest
-
TW #7
ASP
You have ASP within ASP. Use string concatenation instead.
<%
Response.Redirect("files/CodeDelphi.asp?art_id=<%=
("art_id").Value)%>")
%>
know what is wrong>-----Original Message-----
>Could someone please have a look at this code and let methe requested name>with it?
>I am getting the following error page for line "15 "
>
>ADODB.Recordset error '800a0cc1'
>
>Item cannot be found in the collection corresponding towrong with the>or ordinal.
>
>/Cat9/Data_Prog/Feedadd.asp, line 15
>
>
>Also could someone please let me know what I am doing(But go to the same>"Response.Redirect"
>I have "2" lines of code below that are both "Redirects"Could someone assist on>place)
>I need the lines to go exactly when the "art_id" is.Database.>it please?
>
>The art_id = is the "Article ID" AutoNumber Key of thethat are created.>This is the Number that is assigned to all of the PagesWhich ever one that>In the below example, it is going to article Number "?">was responded from.
>
>Thank You
>Wayne
>
>Here is the Table - Form
>------------------
>Submit.asp
>----------
><table width="102%" border="0" height="138">
> <form method="POST" action="../Feedadd.asp">
> <tr> <td>
> <input type="text" name="Name"
>style="background-color:#05B7FA;color:#ffffff;">
> </td></tr><tr>
> <td height="96">
> <textarea name="Comments" cols="50" rows="8">TW Guest
-
Fred Ferguaon #8
ASP
I get a the "http 500 Internal Server Error" when tying
to run any ASP page from localhost. I'm running Xp Pro
with IIS 5.O with Frontpage installed . I've checked
secutity settings on IIS. Can anyone help?
Fred Ferguaon Guest
-
Paul White #9
Re: ASP
"Fred Ferguaon" <fferguson10@earthlink.net> wrote in message
news:03f001c36469$4fa8c4b0$a301280a@phx.gbl...> I get a the "http 500 Internal Server Error" when tying
turn off the "friendly HTTP errors" in IE.
To do this, open IE, then open the Options dialog. On the Advanced tab,
deselect Show friendly HTTP error messages.
When you reload the page, you'll see the error message that the webserver
has sent.
Paul White Guest
-
rdrunner40 #10
ASP
Hi all.
I have 3 MS Access Databases in the inetpub folder on a
windows 2003 server my question is i used to be able to
see them and have them working correctly now on the new
server they dont. I have 4 ASP pages that access these
yet when i click on the lonk to open them it shows this
page is not found.
what are i missing ? is it a rights issue ? i have made
the ODBC connections as per the previous server setup and
names but alas they dont work.
Any clues or help apprecriated.
regards,
Murray
rdrunner40 Guest
-
Ray at #11
Re: ASP
Error? Code? Doesn't work meaning what?
Ray at work
"rdrunner40" <roadrunner40@hotmail.com> wrote in message
news:0cdc01c3876b$a63ad5f0$a001280a@phx.gbl...> Hi all.
>
> I have 3 MS Access Databases in the inetpub folder on a
> windows 2003 server my question is i used to be able to
> see them and have them working correctly now on the new
> server they dont. I have 4 ASP pages that access these
> yet when i click on the lonk to open them it shows this
> page is not found.
>
> what are i missing ? is it a rights issue ? i have made
> the ODBC connections as per the previous server setup and
> names but alas they dont work.
>
> Any clues or help apprecriated.
>
> regards,
> Murray
Ray at Guest
-
Tom Kaminski [MVP] #12
Re: ASP
"rdrunner40" <roadrunner40@hotmail.com> wrote in message
news:0cdc01c3876b$a63ad5f0$a001280a@phx.gbl...What do you mean by "click on the lonk <sic> to open them it ? Are you> Hi all.
>
> I have 3 MS Access Databases in the inetpub folder on a
> windows 2003 server my question is i used to be able to
> see them and have them working correctly now on the new
> server they dont. I have 4 ASP pages that access these
> yet when i click on the lonk to open them it shows this
> page is not found.
>
> what are i missing ? is it a rights issue ? i have made
> the ODBC connections as per the previous server setup and
> names but alas they dont work.
trying to serve the mdb files directly or are you using ADO code in your
ASP?
--
Tom Kaminski IIS MVP
[url]http://www.iistoolshed.com/[/url] - tools, scripts, and utilities for running IIS
[url]http://mvp.support.microsoft.com/[/url]
[url]http://www.microsoft.com/windowsserver2003/community/centers/iis/[/url]
Tom Kaminski [MVP] Guest
-
Paul Raflik #13
ASP
Hi,
We have a WIn2k SP4 server running IIS 5.0.
I can't get it to run ASP pages. HTML pages are fine.
This is a new installation and ASP has never worked.
I get a HTTP 500 error when we try the ASP page.
The only modification from default installation is that
the default website directory has been moved to D:
partition.
We are using the Default web site for the Intranet site.
Thanks.
Paul Raflik Guest
-
Ray at #14
Re: ASP
First see here.
[url]http://www.aspfaq.com/2109[/url]
Ray at work
"Paul Raflik" <anonymous@discussions.microsoft.com> wrote in message
news:006b01c39337$3dde0270$a401280a@phx.gbl...>
> I get a HTTP 500 error when we try the ASP page.
Ray at Guest
-
Re: ASP
I did as the article suggested. The error message has
changed but still does not give me any clue as to what is
wrong. "The server has encountered an error while
loading an application during the processing of your
request. Please refer to the event log for more detail
information. Please contact the server administrator for
assistance."
There are no relevent Event log messages.
The ASP page in question works fine on another IIS web
server.
wrote in message>-----Original Message-----
>First see here.
>[url]http://www.aspfaq.com/2109[/url]
>
>Ray at work
>
>"Paul Raflik" <anonymous@discussions.microsoft.com>>news:006b01c39337$3dde0270$a401280a@phx.gbl...>>>
>> I get a HTTP 500 error when we try the ASP page.
>
>.
>Guest
-
David Smotherman #16
ASP
Since IE 6.0 came out, whenever anyone tries to order from my website needfultoys.com they get the following message
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
/needfultoys_secure/Shipping.asp, line 162
My site is written in ASP of which I am totally ignorant. Is there something I can do or am I going to have to invest in a website written in a different language (which being a struggling business is not in my budget). I have done some (self taught) web development needfulplanet.com for examples but I do not know ASP can anyone help?
David Smotherman Guest
-
Jos #17
Re: ASP
David Smotherman wrote:
This problem probably has nothing to do with ASP.> Since IE 6.0 came out, whenever anyone tries to order from my website
> needfultoys.com they get the following message:
> Microsoft OLE DB Provider for ODBC Drivers error '80004005'
>
> [Microsoft][ODBC Microsoft Access Driver] Operation must use an
> updateable query.
>
> /needfultoys_secure/Shipping.asp, line 162
> My site is written in ASP of which I am totally ignorant. Is there
> something I can do or am I going to have to invest in a website
> written in a different language (which being a struggling business is
> not in my budget). I have done some (self taught) web development
> needfulplanet.com for examples but I do not know ASP can anyone help?
It is usually caused by incorrect security settings for the database
file (mdb file).
Make sure that the user IUSR_MACHINENAME (replace
MACHINENAME with the real name of the server) has write access
to the database.
--
Jos
Jos Guest
-
Bhaskardeep Khaund #18
Re: ASP
Hi,
This is an error for using not using the appropriate cursor type. Make sure you have used the proper cursor type when you are opening the recordset. Its a simple problem and you can change the recordset by writing a single line like-
Set objRs = Server.CreateObject("ADODB.Recordset")
objRs.CursorType = adOpenStatic (you need to change this to appropriate cursor type)
objRs.Open sql, objConn
Read about the different cursor types in this site:-
[url]http://www.devguru.com/Technologies/ado/quickref/recordset_cursortype.html[/url]
Hope this helps,
Regards
Bhaskardeep Khaund
Bhaskardeep Khaund Guest
-
YT #19
asp
greetings,
what i am looking for is a way for my asp script to grab a web page via an
http session and save the results to a string variable. ie. somewhere in the
script, the code loads a com object or something or rather, builds a request
URL, goes to the internet, downloads the result and parses out the returned
text - not just display the result.
are there any com objects out there (built-in or otherwise) that does that,
or do i have to build my own?
any suggestions?
regards,
yt
YT Guest
-
YT #20
Re: asp
winhttp. found it. hope i didn't waste your time...
yt
"YT" <ytNOSPAM@MAPSONfunkychickens.org> wrote in message
news:%23c3pVVYoEHA.2948@TK2MSFTNGP11.phx.gbl...the> greetings,
>
> what i am looking for is a way for my asp script to grab a web page via an
> http session and save the results to a string variable. ie. somewhere inrequest> script, the code loads a com object or something or rather, builds areturned> URL, goes to the internet, downloads the result and parses out thethat,> text - not just display the result.
>
> are there any com objects out there (built-in or otherwise) that does> or do i have to build my own?
>
> any suggestions?
>
> regards,
> yt
>
>
>
YT Guest



Reply With Quote

