- 注册时间
- 2012-7-23
- 最后登录
- 2014-12-12
- 阅读权限
- 10
- 积分
- 418
- 精华
- 0
- 帖子
- 113
|
请教下如何实现呢?
我的想法是在提交保存后,.net程序去检测数据是否准确,是否违反主键约束,有的话就alert出来提示.- //保存
- function saveData() {
- var data = grid.getChanges();
- var json = mini.encode(data);
- grid.loading("保存中,请稍后......");
- $.ajax({
- url: "/data/default.aspx?method=SaveEmployees",
- data: { data: json },
- type: "post",
- success: function (text) {
- grid.reload();
- },
- error: function (jqXHR, textStatus, errorThrown) {
- alert(jqXHR.responseText);
- }
- });
- }
- protected void Page_Load(object sender, EventArgs e)
- {
- String methodName = Request["method"];
- if (String.IsNullOrEmpty(methodName)) return;
- //invoke method
- Type type = this.GetType();
- MethodInfo method = type.GetMethod(methodName);
- method.Invoke(this, null);
- }
- /// <summary>
- /// 保存数据
- /// </summary>
- public void SaveEmployees()
- {
- Response.Write("[如何返回错误信息呢]");
- Response.End();
- }
复制代码 |
|