用户输入处理
你们如何处理使用相同的表单来输入和编辑数据。我当前检查是否已在表单或查询字符串中解析参数并相应地执行操作。例如
string id = Request.QueryString.Get("id");
if(id == string.Empty){
//new input
}else{
//get data from database etc
//populate form
}
How do you guys handle using the same form to input and edit data. I currently check to see if a param has been parsed in the form or querystring and action accordingly. e.g
string id = Request.QueryString.Get("id");
if(id == string.Empty){
//new input
}else{
//get data from database etc
//populate form
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常我使用隐藏文本框来存储当前记录 ID 并以与您相同的方式进行检查。但不同的是,我用的是post而不是get。
并且还使用动态提交目的地 - 对于插入或更新功能,
我不确定这是实现该功能的最佳方法
Normally i use hidden text box to store current record id and check same way as you did. But difference is, I use post not get.
And also use dynamic submit destination - for insert or update functions
I am not sure its a best way to implement that
使用Session,Session["ID"] = "ObjectID";
Use Session, Session["ID"] = "ObjectID";