If I am understanding your question correctly (you want to be able to
retrieve the value of a text box on one aspx page for use on another
page), you can access the value by calling it from the
Request.Params.
Result in the following example is a label; I grab the text from the
text box on the first page and put it in my label:
string oldText = Request.Params["FirstPageTextBoxName"];
Result.Text = oldText;
This should work whether you have a text box running on the server, or
an input on the client side, etc. :-)
On Sep 18, 6:14 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> hai,
>
> i am dharam
>
> i want use first page textbox in second page it means that we can
> develop a site
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web
Services,.NET Remoting" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://cm.megasolutions.net/forums/default.aspx
-~----------~----~----~----~------~----~------~--~---