The folks @
http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
are more likely to know the answer. Most people here are classic types.

Wilson Web Forms is easier way than Server,Transfer
http://www.learnasp.com/rb?3915
has links to WilsonWebForms and other awesome ASP.net freebies.


On Wed, 5 Jan 2005 02:44:11 -0800 (PST), kumar velan <[EMAIL PROTECTED]> wrote:
> 
> 
> I have a page ("firstpage.aspx") with ASP.NET Controls (built-in .NET 
> controls), like textbox control (id='aspCtrlName') and a button control 
> (id='btnNext'). Here I want to transfer this page data to another page when I 
> am clicking that button control. So write the following code in 
> firstpage.aspx.vb
> 
> Private Sub butNext_Click(ByVal sender As System.Object, ByVal e As 
> System.EventArgs) Handles butNext.Click
> 
>         Server.Transfer("testpage.aspx?qryStrInfo='qrydata'")
> 
> End Sub
> 
> In destination page ("testpage.aspx"), I would like to list all control's 
> data of previous page. So I wrote the following code.
> 
> <%
> 
>             Response.Write(Request.Form("aspCtrlName"))
> 
>             Response.Write(Request.Form("qryStrInfo"))
> 
> %>
> 
> ok, come to the point.
> 
> I got two correct value from aspCtrlName and qryStrInfo while am working in 
> Windows XP. But I got only one value from qryStrInfo, not from aspCtrlName 
> while am working in Windows 2003 Advanced Server.
> 
> How to correct this problem?
> 
> Please let me clarify as early as possible.
> 
> Advance Thanks.
> 
> Kumar.
> 
> 
> ---------------------------------
> Do you Yahoo!?
>  The all-new My Yahoo! â What will yours do?
> 
> [Non-text portions of this message have been removed]
> 
> Yahoo! Groups Links
> 
> 
> 
> 
>


 
Yahoo! Groups Links

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

<*> 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