我已经逐步完成了我的代码,看看是否存在任何空值,但每个人都带来了一个值,但我找不到问题。
public partial class UserDetail : ICSBaseUserControl
{
UserRepository userDao = new UserRepository();
User user;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
long userID = Convert.ToInt64(Request[UrlParameters.UrlParameterName.UserID]);
user = (userID > 0) ? userDao.GetUser(AppSession.Company.ID, userID) : new c365_EntityFramework.User();
if (user.ID > 0)
{
txtFirstName.Text = user.Forename;
txtSurname.Text = user.Surname;
txtAddress.Text = user.Address1;
txtEmail.Text = user.Email;
txtUsername.Text = user.Username;
}
}
}
protected void Button2_Click(object sender, EventArgs e)
{
bool result = userDao.UpdateUser(user.ID, txtFirstName.Text, txtEmail.Text, txtSurname.Text, txtAddress.Text, txtUsername.Text);
}
}
修改
通过将user
加载移出if(!IsPostBack)
来解决这个问题:
public partial class UserDetail : ICSBaseUserControl
{
UserRepository userDao = new UserRepository();
User user;
protected void Page_Load(object sender, EventArgs e)
{
long userID = Convert.ToInt64(Request[UrlParameters.UrlParameterName.UserID]);
user = (userID > 0) ? userDao.GetUser(AppSession.Company.ID, userID) : new c365_EntityFramework.User();
if (!IsPostBack)
{
if (user.ID > 0) // Check for user ID
{
txtFirstName.Text = user.Forename;
txtSurname.Text = user.Surname;
txtAddress.Text = user.Address1;
txtEmail.Text = user.Email;
txtUsername.Text = user.Username;
}
}
}
答案 0 :(得分:4)
我认为问题是字段user
没有被实例化,因此点击按钮时会null
。
如果不回发,则Page_Load
仅填充user
。那么,当你按下按钮时,回发正在进行中,那时你没有得到user
?此外,您需要查看ASP .NET页面生命周期。
ASP .NET页面不记住字段,您可能希望将user
置于会话状态,然后以这种方式使用。