Web アプリケーションに 2 つのサイトがあります。私がしたいことは、ボタンを使用してサイト B の Web パーツからサイト A のリストを更新することです。
問題は、私が使用しないPage.IsPostBack
場合、ボタンがクリックされたときにページが未処理の例外をスローすることですが、サイト A のリストは更新されます。しかし、を使用するPage.IsPostBack
と、例外は発生しませんが、プロセスはプッシュスルーされません。実際のところ、ボタンがクリックされたときにイベントハンドラに進むことさえありません。
if (!Page.IsPostBack)
{
using (SPSite site = new SPSite(SPContext.Current.Web.Url))
{
SPQuery query = new SPQuery();
query.Query = @"Query><OrderBy><FieldRef Name='Title' /></OrderBy><Query>";
query.ViewAttributes = "<FieldRef Name='Title' />";
query.ViewFields = string.Concat(
"<FieldRef Name='Title' />",
"<FieldRef Name='Status' />",
"<FieldRef Name='Severity' />",
"<FieldRef Name='Comment' />");
query.ViewFieldsOnly = true;
showGrid = new GridView();
this.Controls.Add(showGrid);
SPList list = SPContext.Current.Site.RootWeb.Lists["Ticket List"];
DataTable dt = new DataTable();
ButtonField approveBtn = new ButtonField();
approveBtn.ButtonType = ButtonType.Button;
approveBtn.CommandName = "Update";
approveBtn.Text = "Approve";
showGrid.Columns.Add(approveBtn);
dt = list.Items.GetDataTable().Copy();
dt = list.GetItems(query).GetDataTable();
showGrid.DataSource = dt;
showGrid.DataBind();
showGrid.RowCommand += new GridViewCommandEventHandler(inventoryGridView_RowCommand);
}
}
イベントハンドラー
if (e.CommandName == "Update")
{
int index = Convert.ToInt32(e.CommandArgument);
GridViewRow row = showGrid.Rows[index];
using (SPSite site = new SPSite(SPContext.Current.Web.Url))
{
using (SPWeb Web = site.OpenWeb())
{
Web.AllowUnsafeUpdates = true;
// Open List
SPList list = SPContext.Current.Site.RootWeb.Lists["Ticket List"];
SPListItem _listItem = list.Items[row.RowIndex];
_listItem["Status"] = "Approved";
_listItem.Update();
Web.AllowUnsafeUpdates = false;
}
}
}