sending a string value to a web site
Visual Basic
3
Posts
2
Posters
0
Views
1
Watching
-
Hello I want to send a string value to a web site. How can I send it from my program and how can I get it from web page??? Thank you Best Regards Emre YAZICI
If I understand you, You can send the string using GET : http://www.m.com?MyString=data. You can handle it in the server side by using QueryString :
C#string mydata = this.Request.QueryString["MyString"];
-
If I understand you, You can send the string using GET : http://www.m.com?MyString=data. You can handle it in the server side by using QueryString :
C#string mydata = this.Request.QueryString["MyString"];