Click here to Skip to main content
15,887,083 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello dear experts :-),

Well I got 3 Sites. Lets Call them A,B and C.
The user must give some informations on site A. These informations goes to Site B, where the user can select a recipe or something from site C (Site C is ja Catalog, and should return a single string)....

now, how can I get the data from Site C and Site A to Site B?

I hope you can help me out here ;)
Posted

You should be able to use URL Parameters.
How to: Access URL Parameters in a Routed Page[^] should help you get started.

This might help you as well - http://www.4guysfromrolla.com/articles/020205-1.aspx[^].
 
Share this answer
 
Comments
fjdiewornncalwe 11-Mar-13 10:50am    
+5. Great links.
Abhinav S 11-Mar-13 13:00pm    
Thanks Marcus.
If ur Using Windows App...u can create public variable
 
Share this answer
 
The best way to transfer data from one page to another is the use of query string but remember this method is not secure from security point of view.

Passing variables between pages using QueryString[^]
For Details on Query string querystring[^]
 
Share this answer
 
Comments
Alex Großmann 11-Mar-13 6:57am    
Thank you a lot, does this also work with C#?
Shanu2rick 12-Mar-13 2:28am    
with no doubts
Best things is session view ...
C#
Session("ValueA") ="some value";

This session use Next page Like this
C#
String Kmp=Session("ValueA").toString();
 
Share this answer
 
Comments
Alex Großmann 14-Mar-13 4:56am    
Thank you a lot! I can´t use Sessions, my Compiler gives me an error that Session is not known in my project? I use a normal windows app with c# and xaml....

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900