Ask a Question related to ASP, Design and Development.
-
Arnaldo Martinez #1
Passing a value from a client to a session("Temp")
Hi, friends:
I have an ASP page where an user enter a value and click the submit button.
I want this value to be transfer to a session("temp") within the same page
where I want to call it back from the same ASP page.
Arnaldo Martinez Guest
-
Passing parameter when launching a program as a "Link"
I am trying to get Notepad.exe to launch a specific batch file for editing. I would like to establish this using the "link tool" in Acrobat 6.0.1... -
Passing "%" wild card to stored procedure
Hi everyone, This may be a simple question: When I pass "%" (without the quotes) in an asp page to a stored procedure, I get the Incorrect... -
Variable passing to script to fill html <img src="MyScript.Php?ImageName=KnownGoodData" >
Hello, I'm trying to do the above in order to process an image and return the result to an html image control. It fails and my key suspects are... -
How can I "know" the difference between a session timed out and a session that did session.abort?
Any clues? Thanks for your time. Adam -
Which is faster? Dim dv As New DataView(session("myDataTable")) or CType(session("myDataTable"))
Hello, let's say my session("myDataTable") is type of DataTable Now what is faster? a) Dim dv As New DataView(session("myDataTable")) b) Dim... -
Aaron Bertrand - MVP #2
Re: Passing a value from a client to a session("Temp")
> I have an ASP page where an user enter a value and click the submit
button.page> I want this value to be transfer to a session("temp") within the sameThis doesn't make much sense. So the ASP runs, loads a bunch of client-side> where I want to call it back from the same ASP page.
script, and then it's done. So yes, you can use a workaround to set a
session variable without actually refreshing the page (see
[url]http://www.aspfaq.com/2281[/url]), but how on earth is that page itself going to
use the session variable? You can't do that without running some ASP code,
and you can't run that page's ASP code without the ASP page reloading. So,
probably the best option is to submit a form, which sets the session
variable and then the rest of the page can load, using the new session
variable that's been stored...
Aaron Bertrand - MVP Guest
-
Peter Foti #3
Re: Passing a value from a client to a session("Temp")
"Arnaldo Martinez" <martinezae@mdpls.org> wrote in message
news:%23RoXnpAlDHA.2456@TK2MSFTNGP09.phx.gbl...button.> Hi, friends:
>
> I have an ASP page where an user enter a value and click the submitpage> I want this value to be transfer to a session("temp") within the sameSomething like this?> where I want to call it back from the same ASP page.
<form action="" method="post">
<input type="text" name="test">
<input type="submit" name="Submit" value="Submit">
</form>
<%
Session("test") = Request("test")
Response.write( "<div>Session(""test"")=" & Session("test") & "</div>")
%>
Peter Foti Guest
-
Ray at #4
Re: Passing a value from a client to a session("Temp")
What happened with the sample I posted in active-server-pages Yahoo group?
Ray at work
"Arnaldo Martinez" <martinezae@mdpls.org> wrote in message
news:%23RoXnpAlDHA.2456@TK2MSFTNGP09.phx.gbl...button.> Hi, friends:
>
> I have an ASP page where an user enter a value and click the submitpage> I want this value to be transfer to a session("temp") within the same> where I want to call it back from the same ASP page.
>
>
Ray at Guest



Reply With Quote

