a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Configuration;
|
|
using System.Collections;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Security;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using System.Web.UI.WebControls.WebParts;
|
|
using System.Web.UI.HtmlControls;
|
|
using System.Xml.Linq;
|
|
using System.Web.DynamicData;
|
|
|
|
public partial class Insert : System.Web.UI.Page {
|
|
protected MetaTable table;
|
|
|
|
protected void Page_Init(object sender, EventArgs e) {
|
|
DynamicDataManager1.RegisterControl(DetailsView1);
|
|
}
|
|
|
|
protected void Page_Load(object sender, EventArgs e) {
|
|
table = DetailsDataSource.GetTable();
|
|
Title = table.DisplayName;
|
|
}
|
|
|
|
protected void DetailsView1_ItemCommand(object sender, DetailsViewCommandEventArgs e) {
|
|
if (e.CommandName == DataControlCommands.CancelCommandName) {
|
|
Response.Redirect(table.ListActionPath);
|
|
}
|
|
}
|
|
|
|
protected void DetailsView1_ItemInserted(object sender, DetailsViewInsertedEventArgs e) {
|
|
if (e.Exception == null || e.ExceptionHandled) {
|
|
Response.Redirect(table.ListActionPath);
|
|
}
|
|
}
|
|
}
|