Ask a Question related to ASP.NET General, Design and Development.
-
Jurjen de Groot #1
ASP.NET parameters in URL ??
Hello,
What's the deal with the ? in a URL ? I know it is used to transport some
parameters but how can the aspx page retrieve those values ? for instance
WebForm1.aspx?ID=12345
How to get the ID value, I suppose it has to be retrieved in the Page_Load
event, but how ?
TIA
Jurjen de Groot
G.I.T.S., Netherlands
Jurjen de Groot Guest
-
Passing Parameters To CFC
I am testing how to return data from a CFC within Flash Forms. I have a simple <cfselect> tag that will hold data returned from a CFC. This CFC... -
Using URL Parameters in DW
Using Dreamweaver MX 2004 I am trying to complete a tutorial that says the following: 1. Set a place holder (from info from a mysql database) for... -
create parameters without creating parameters
cant you create ado command parameteres without creating a parameter object? i have a function that takes the name of a stored proc, and two... -
parameters
you get this because it cannot find the field it is looking for. it is looking at the query and saying I don't know what the value for this word is... -
Parameters in ASP
I'm not entirely sure what it is that you are trying to do but at a guess you want to manipulate a URL's parameters. This is easily achieved using... -
-
Hugo Wetterberg #3
Re: ASP.NET parameters in URL ??
Request["name"];
to save typing
Hugo Wetterberg Guest
-
Noel Ablon #4
Re: ASP.NET parameters in URL ??
Here is how you get the value. Hope this helps.
string Qr = Request.QueryString["ID"];
Junior Member
- Join Date
- Jun 2011
- Posts
- 1



Reply With Quote

