Sarguru suggested the way to do that

in a.aspx...

Context.Items.Add("Value1", ControlName.Value.ToString)
Context.Items.Add("Value2", ControlName.Value.ToString)
etc...

Server.Transfer("b.aspx")

in b.aspx


Dim Value1 as String = Context.Items.Item("Value1")

etc...


On 4/15/05, Arindam <[EMAIL PROTECTED]> wrote:
> 
> Hi Mark,
> I dont want values  to be seen on addressbar ...then ?
> 
> AC
> 
> Mark E <[EMAIL PROTECTED]> wrote:
> 
> After you submit a.aspx, get your values from the form and append them to the 
> querystring and redirect to b.aspx:
> 
> Dim strTextBox1 as String = ControlName.Value.ToString
> Dim strTextBox2 as String = ControlName.Value.ToString
> 
> Response.Redirect("b.aspx?value1=" & strTextBox1 & "&value2=" & strTextBox2 )
> 
> Mark
> 
> Arindam wrote:
> 
> Silly Question , But I dont know
> 
> How to send data from a.aspx to b.aspx, when a.aspx (with a few text boxes ) 
> is submitted .
> is the same way, we doo in classic asp ?
> 
> (Pls dont tell me to use a datatable, or hashtable with cache -- that i know.)
> I want a straight way .
> 
> Thnaks
> Arindam
> 
> Thanks & Regards
> 
> Arindam
> Web Designer & Developer
> 
> Yahoo! India Matrimony: Find your life partneronline.
> 
> [Non-text portions of this message have been removed]
> 
> ---------------------------------
> Yahoo! Groups Links
> 
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> 
> To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
> 
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
> 
> [Non-text portions of this message have been removed]
> 
> Yahoo! Groups Links
> 
> Thanks & Regards
> 
> Arindam
> Web Designer & Developer
> 
> Yahoo! India Matrimony: Find your life partneronline.
> 
> [Non-text portions of this message have been removed]
> 
> Yahoo! Groups Links
> 
> 
> 
> 
> 


-- 
Dean Fiala
Very Practical Software, Inc
http://www.vpsw.com


 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to