程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> asp.net-未將對象引用設置到對象的實例。修改密碼就出現這個問題

asp.net-未將對象引用設置到對象的實例。修改密碼就出現這個問題

編輯:編程綜合問答
未將對象引用設置到對象的實例。修改密碼就出現這個問題

using System;
using System.Data;
using System.Configuration;
using System.Collections;
public partial class XueShengMod : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
if (this.TextBox2.Text == "" || this.TextBox3.Text == "")
{
Response.Write("alert('密碼不能為空!');document.location=document.location;");
}
if
(this.TextBox1.Text!=Session["PWD"].ToString())
{
Response.Write("alert('舊密碼不對!');document.location=document.location;");
}
else if (this.TextBox2.Text == this.TextBox3.Text)
{
string sql = "update TB_XueSheng set PassWord='" + this.TextBox2.Text + "' where XueHao='" + Session["username"].ToString() + "'";
bool b = DBHelper.ExecSql(sql);
if (b)
{

未將對象引用設置到對象的實例。
源錯誤:
行 22: Response.Write("alert('密碼不能為空!');document.location=document.location;");
行 23: }
行 24: if
行 25: (this.TextBox1.Text!=Session["PWD"].ToString())
行 26: {

最佳回答:


使用session前最好判斷下session是否為空,要不超時後session為空調用ToString就報錯了

 protected void Button1_Click(object sender, EventArgs e)
{
if(Session["username"]==null||Session["pwd"]==null){/////////
  Response.Write("超時!");
    Response.End();///////
}
if (this.TextBox2.Text == "" || this.TextBox3.Text == "")
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved