Prev | Current Page 188 | Next

Rob Cameron and Dale Michalk

"Pro ASP.NET 3.5 Server Controls and AJAX Components"

NET State Management

CHAPTER 3 ?–  A SP.NET S TATE MANAGEMENT 113


Postback Data


Enter your name:







"Set Labels" OnClick="SetLabelButton_Click">
 
Text="Submit Page">




StatelessLabel







StatefulLabel





Listing 3-10. The Postback Data Web Form Code-Behind Class File
using System;
namespace ControlsBook2Web.Ch03
{
public partial class PostbackData : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void SetLabelButton_Click(object sender, EventArgs e)
{
StatelessLabel1.Text = "Set by " + NameTextBox.Text;
StatefulLabel1.Text = "Set by " + NameTextBox.Text;
}
}
}
114 CHAPTER 3 ?–  ASP.


Pages:
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200