Guest User

Untitled

a guest
Feb 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. string msg = "hello";//code behind
  2.  
  3. <p><% msg %></p>
  4.  
  5. <p><%= msg %></p>
  6.  
  7. string msg = "hello";//code behind
  8.  
  9. <p><%= msg %></p>
  10.  
  11. Response.Write("<p>hello</p>");
  12.  
  13. string msg = "hello";//code behind
  14.  
  15. <p><%= this.msg %></p>
  16.  
  17. private string msg;
  18. public string Msg { get { return msg; } }
  19.  
  20. protected void Page_Load(object sender, EventArgs e) {
  21. msg = "hello";
  22. }
  23.  
  24. <p><%= Msg %></p>
  25.  
  26. Response.Write(msg);
Add Comment
Please, Sign In to add comment