Single web form project
-
I want to make a simple ASP.Net project that has a single web form where the client will write a url with a query string, so can I make the first page accepts or getting the sent data from the client :)
Thanks alot Hamody
-
I want to make a simple ASP.Net project that has a single web form where the client will write a url with a query string, so can I make the first page accepts or getting the sent data from the client :)
Thanks alot Hamody
I don't see a question here. What do you want to do ? You want to accept data via the QueryString ? Request.QueryString is what you need to examine values. If Request.QueryString["xxx"] is not null, then a value has been provided for xxx, even if it's an empty string.
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
-
I don't see a question here. What do you want to do ? You want to accept data via the QueryString ? Request.QueryString is what you need to examine values. If Request.QueryString["xxx"] is not null, then a value has been provided for xxx, even if it's an empty string.
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
When you will do this, you will know almost everything there is to know about web form programing.
David Domingues at webrickco@gmail.com. Feel free to visit http://webrick.athost.net/index.php
-
I don't see a question here. What do you want to do ? You want to accept data via the QueryString ? Request.QueryString is what you need to examine values. If Request.QueryString["xxx"] is not null, then a value has been provided for xxx, even if it's an empty string.
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
thanks a lot there but i mean that I want 2 know if I can make a single form web project that accepts a query string values, as the client will wrtie a url as seen down: http://www.md.com/mid=344&mname=mohd the above url is as an example, can i make this single form web page project or d u have any idea:zzz:
Thanks alot Hamody
-
thanks a lot there but i mean that I want 2 know if I can make a single form web project that accepts a query string values, as the client will wrtie a url as seen down: http://www.md.com/mid=344&mname=mohd the above url is as an example, can i make this single form web page project or d u have any idea:zzz:
Thanks alot Hamody
You're asking on the C# forum, so I assume you want to use ASP.NET. I don't see what the big deal is - like I said, you can use Request.QueryString to get the values. What else do you need to know ?
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
-
You're asking on the C# forum, so I assume you want to use ASP.NET. I don't see what the big deal is - like I said, you can use Request.QueryString to get the values. What else do you need to know ?
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
yeah i know but is it ok or allowed on the login form??
Thanks alot Hamody
-
yeah i know but is it ok or allowed on the login form??
Thanks alot Hamody
It's a bit unusual, but there's not such thing as a 'login form', it's all just HTML. You can do whatever you like.
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert