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
Post a Comment