I have a C# string that contains the answer to the question "May we contact?" How do I transfer that to our aspx webpage? The c# string is in the code behind page.
2 Answers
If you want to send the string to another page besides the code-behind it lives in, then use a query string entry to pass it to the URL you are redirecting to. If you want the current page to access the C# string, then make the string a protected property so the page can use it an embedded code block.