类中遇到的一点应用问题==================
在类中:using System.Data.SqlClient;
using System.Web.SessionState;
public class check_info
{
public void check_info1()
{
SqlConnection conn = new SqlConnection("server=localhost;database=Templit;uid=sa;pwd='4321'");
String str = "select * from admin_info wherw uid='"+TextBox1.Text.tostring()+"' and upwd='"+TextBox2.Text.tostring()+"'";
conn.Open();
SqlCommand comm = new SqlCommand(str, conn);
SqlDataReader dr = comm.ExecuteReader();
if (dr.Read())
{
Session["uid"] = dr["uid"].ToString();
if (dr["upower"].ToString() ==" 1")
{
Session["upower"] = "1";
}
else
{
Session["upower"] = "0";
}
}
conn.Close();
}
}
aspx页面
<asp:TextBox ID="TextBox1" runat="server" Style="border-right: #009900 1px solid;
border-top: #009900 1px solid; font: menu; border-left: #009900 1px solid; border-bottom: #009900 1px solid" Width="100px"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server" Style="border-right: #009900 1px solid;
border-top: #009900 1px solid; font: menu; border-left: #009900 1px solid; border-bottom: #009900 1px solid" Width="100px"></asp:TextBox>
为什么错误提示:
说上下文 不错在SESSION 和 TextBox1 TextBox2 呢啊 --------------------编程问答-------------------- wherw 拼错了吧 --------------------编程问答-------------------- HttpContext.Current.Session
--------------------编程问答-------------------- 同意楼上
类中不能直接使用session, 也不能直接操作其他页面上的控件
补充:.NET技术 , ASP.NET