コード例 #1
0
ファイル: EditTopic.aspx.cs プロジェクト: skyaspnet/usta
 protected void btnSubmit_Click(object sender, EventArgs e)
 {
     DalOperationPatch dal = new DalOperationPatch();
     dal.UpdateBBSTopic(int.Parse(Request["topicId"]), txtTitle.Text, Textarea1.Value, hidAttachmentId.Value);
     Response.Write("<script>window.top.location.reload();</script>");
 }