Hello everybody. I've got two web independent applications: ASP.NET www.site1.com and SL(3) app www.site2.com. How can i pass some data(id,strings) from asp.net to SL app. I was thinking about cookie, but I can't write cookies to any site. So is there any way to do it?
A:
Try using query strings,May be this will helpfull:
www.site1.com/yourData?id=ID&anyString=YourValue
Now , try loading the same valued in you SL3 Apps:
string ID= this.NavigationContext.QueryString[ "ID" ];
string YourValue= this.NavigationContext.QueryString[ "YourValue" ];
Subhen
2010-05-06 11:05:42
it's some security info such as account to edit, so I can't pass it through uri. Thanks for answer
Andrew Kalashnikov
2010-05-07 02:06:20
The links for encrypting your Data:http://riawebsoft.ru/Silverlight/Rsa/TestEnglish.aspxhttp://stackoverflow.com/questions/878312/silverlight-encrypting-username-and-password-for-web-service
Subhen
2010-05-10 05:28:27