c# - Fetch Url data in Silverlight -


i have url in silverlight

https://............?data=1234 

how fetch url data in silverlight.

i have seen request.querystring of asp.net doesnt work here.

create instance of uri class.

var uri = new uri("http://www.example.com?data=123456"); 

then can use query property, example:

var query = uri.query; // query contains "?data=123456" 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -