On Mon, May 21, 2012 at 12:25 AM, gardo <[email protected]> wrote:
> Hello everyone:
>
> Im working with vb.net 2008 and i would like to know  how can i send
> variables to a URL using the library System.Net....
> if there's someone that can help me please or show me a example.
>
---------------------

Response.Redirect ("my.aspx?var1=HI&var2=HELLO");

Or you could generate the string for as many as you need and put that in.

String myNewURL = "my.aspx?var1=HI&var2=HELLO"

Response.Redirect (myNewURL);


-- 
Stephen Russell
Sr. Analyst
Ring Container Technology
Oakland TN

901.246-0159 cell

-- 
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://groups.google.com/group/dotnetdevelopment?hl=en?hl=en
or visit the group website at http://megasolutions.net

Reply via email to