私はvisualstudio.net2010でログインページを書いています。(c#)いくつかのメソッドが含まれているクラスを作成しました。これも :
namespace SchoolsNetwork
{
public class cUsers2
{
SqlConnection SchoolsDBConnectionString;
SqlDataAdapter sda;
SqlCommandBuilder scb;
SqlConnection(ConfigurationManager.ConnectionStrings
"SchoolsDBConnectionString"].ConnectionString);
public DsUsers2 Checkpassword(string UserName, string password,out bool Success)
{
DsUsers2 dsUsers=new DsUsers2();
string SqlStr="select * from tblMembers where Username='"+UserName+"' and Password='"+password+"'";
sda.SelectCommand=new SqlCommand(SqlStr,SchoolsDBConnectionString);
sda.Fill(dsUsers.tblMembers);
Success=dsUsers.tblMembers.Rows.Count>0;
return dsUsers ;
}
次に、form.aspxページに、ユーザー名とパスワードを入力するためのテキストフィールドと、クリックしてログインするためのボタンがあります。ボタンのコードは次のとおりです。
protected void Button1_Click(object sender, EventArgs e)
{
if (txtuser.Text.Trim().Length>0 && txtpass.Value.Length>0 )
{
cUsers2 cUsers=new cUsers2();
DsUsers2 dsUser=new DsUsers2();
bool Success;
if (txtuser.Text.Trim()=="admin")
{
Success=cUsers.CheckAdminPass(txtuser.Text.Trim(),txtpass.Value.Trim());
if (Success)
{
Response.Redirect("WebForm2.aspx");
}
}
dsUser=cUsers.Checkpassword(txtuser.Text.Trim(), txtpass.Value.Trim(),out Success);
if(Success)
{
Session["ID"]=dsUser.tblMembers.Rows[0][dsUser.tblMembers.IDUserColumn].ToString();
System.Web.HttpContext.Current.Response.Redirect("frmProfile.aspx");
}
else lblerror.Text="invalid username & password";
}
}
web.configで私はこれをconnectionstringとして持っています:
<configuration>
<connectionStrings>
<add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true"
providerName="System.Data.SqlClient" />
<add name="SchoolsDBConnectionString" connectionString="
Data Source=Sunny-LPTP\SQLEXPRESS;Initial Catalog=SchoolsDB;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
デバッグ後、この行はエラーとして示されます:
sda.SelectCommand=new SqlCommand(SqlStr,SchoolsDBConnectionString);
それは言う
オブジェクト参照がオブジェクト インスタンスに設定されていません。
誰か助けてくれませんか?ありがとう