Ask a Question related to ASP.NET General, Design and Development.
-
Neil Ramsbottom #1
Re: 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 the
System.URI class.
System.URI myurl = new
System.URI([url]http://www.google.com/?blah=abc&blah2=1234[/url]) // the url should be
a string literal, but my news client keeps removing the quote chars
You can then read and modify the various elements that make up the URI via
the object's properties. The one that you want to access is the Query
property.
This will return the entire querystring, but you can easily manipulate that
without having to worry about the other elements of the URI. Another
advantage of using the URI class is that it's used extensively by the
System.Net web client methods.
Neil Ramsbottom
"Marilu" <carmen.chico@bco.pichincha.com> wrote in message
news:20bd01c35315$693c8b60$a001280a@phx.gbl...> Like collecting data of a ASP, calling from a ASPX. This
> ASP returns string, and I need to recover it to be able to
> manipulate it in the ASPX,
> JAVA is :
> URL url_o=new URL(http:\\page.asp?params="usu.....)
> URLConnection urlconn_o=url_o.openconnecction();
Neil Ramsbottom Guest
-
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 ? ... -
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...



Reply With Quote

