Ask a Question related to ASP, Design and Development.
-
bender #1
sending data between pages
How can I through asp figure out if a page is opend through a regular link
or from form post method like this :
<form action="something.asp" method=post>
//code...
<input type="submit" value="Ok">
</form>
Thanks.
bender Guest
-
pages being lost when sending back from review
Hi, We seem to be having a bit of a problem with some of our users. All users are able to send pages for review with no problems. If they are... -
sending data from asp to flash
hi . i need to send a data from asp file into flash. i want to display the asp variable in flash. can any one help with sample -
Data stream, sending and receiving data packets
Is there anyway to manipulate this data after it has been originally created? ie: change title etc -
Sending data with web services
Hi I am a newbie with web services, when you want to actually send data with web services (instead of downloading data from the server side) what... -
Sending large data
Hi i am in a very peculiar situation, i am getting all the data from a pdf file and i am storing it in a dictionary object, i want to send it to a... -
HarryD #2
Re: sending data between pages
you might check the referer.
Request.ServerVariables("HTTP_REFERER")
"bender online.no>" <laasunde@<remove> wrote in message
news:#0Cjkv4dDHA.3260@TK2MSFTNGP09.phx.gbl...> How can I through asp figure out if a page is opend through a regular link
> or from form post method like this :
>
> <form action="something.asp" method=post>
> file://code...
> <input type="submit" value="Ok">
> </form>
>
> Thanks.
>
>
>
HarryD Guest
-
Randy Rahbar #3
Re: sending data between pages
> How can I through asp figure out if a page is opend through a regular link
Something like this might work (if you give your submit input tag a> or from form post method like this :
>
> <form action="something.asp" method=post>
> //code...
> <input type="submit" value="Ok">
> </form>
name=submit)...
if request.form("submit").count > 0 then
'it was submitted via a form post
else
'it was not
end if
Randy Rahbar Guest
-
bender #4
Re: sending data between pages
Thank you :)
"Randy Rahbar" <rvrahbarAThotmail.com> wrote in message
news:uEy9444dDHA.1472@TK2MSFTNGP12.phx.gbl...link> > How can I through asp figure out if a page is opend through a regular>> > or from form post method like this :
> >
> > <form action="something.asp" method=post>
> > //code...
> > <input type="submit" value="Ok">
> > </form>
> Something like this might work (if you give your submit input tag a
> name=submit)...
>
> if request.form("submit").count > 0 then
> 'it was submitted via a form post
> else
> 'it was not
> end if
>
>
bender Guest



Reply With Quote

