クエリ文字列でテキストを渡します。たとえば、ページの相対パスが /pagename.aspx であると仮定すると、以下の例に従ってクエリ文字列を渡すことができます。
/pagename.aspx?text=hello
C# では、Page_Load イベントに次のコードを記述します。
//You don't have to check the url all the time , so just check it if page is not posting back (first time after user visits the page and ignore all other same page post backs. Label can maintain its control state (text value) after every postback, so assign it only once to increase performance
if (!IsPostBack)
{
//Check if query string is provided or not , if it is not provided take some default text, I am taking empty string as default text.
string givenText = (Request.QueryString["text"] == null)?"":Request.QueryString["text"];
label1.Text = givenText;
}
クエリ文字列とデフォルト テキストで指定されたテキストのプロパティを作成することもできます。