首页上一页 1 下一页尾页 1 条记录 1/1页
asp.net从入门到精通的问题
发表在ASP.NET图书答疑
2008-11-11
是否精华
是
否
版块置顶:
是
否
书中3.3.5示例Default.aspx页面中的内容代码与光盘中的内容代码为什么不一样!!!
protected void Page_Load(object sender, EventArgs e)
{
int P_int_current = Convert.ToInt32(Application["current"]);
Application.Lock();
string P_str_chats = Application["chats"].ToString();
string[] P_str_chat = P_str_chats.Split(',');
for (int i = P_str_chat.Length - 1; i >= 0; i--)
{
if (P_int_current == 0)
{
txtContent.Text = P_str_chat[i].ToString();
}
else
{
txtContent.Text = txtContent.Text + "\n" + P_str_chat[i].ToString();
}
}
Application.UnLock();
}
书中完全不一样!!难道书中的方法也行吗?
protected void Page_Load(object sender, EventArgs e)
{
int P_int_current = Convert.ToInt32(Application["current"]);
Application.Lock();
string P_str_chats = Application["chats"].ToString();
string[] P_str_chat = P_str_chats.Split(',');
for (int i = P_str_chat.Length - 1; i >= 0; i--)
{
if (P_int_current == 0)
{
txtContent.Text = P_str_chat[i].ToString();
}
else
{
txtContent.Text = txtContent.Text + "\n" + P_str_chat[i].ToString();
}
}
Application.UnLock();
}
书中完全不一样!!难道书中的方法也行吗?