資源簡介
C# ASP.NET 實(shí)戰(zhàn)項(xiàng)目源代碼 AJAX校內(nèi)數(shù)碼相冊(cè)
代碼片段和文件信息
using?System;
using?System.Web.UI;
public?partial?class?Default2?:?Page
{
????protected?void?Page_Load(object?sender?EventArgs?e)
????{
????}
????protected?void?imgBtn_sure_Click(object?sender?ImageClickEventArgs?e)
????{
????????//聲明類實(shí)例
????????Album?am?=?new?Album();
????????//執(zhí)行插入數(shù)據(jù)的操作
????????int?result?=?am.AddCategory(tbName.Text.Trim()?ddlStatus.SelectedValue);
????????if?(result?==?0)
????????{
????????????scriptManager.RegisterStartupscript(this?GetType()?““
????????????????????????????????????????????????“alert(‘已有此分類,請(qǐng)重新填寫!‘);location.href=‘Category.aspx‘;“?true);
????????}
????????else
????????{
????????????if?(result?>?0)
????????????{
????????????????scriptManager.RegisterStartupscript(this?GetType()?““
????????????????????????????????????????????????????“alert(‘創(chuàng)建成功^_^快快上傳照片吧!‘);location.href=‘Photo_load.aspx‘;“?true);
????????????}
????????????else
????????????{
????????????????return;
????????????}
????????}
????}
????protected?void?imgBtn_reset_Click(object?sender?ImageClickEventArgs?e)
????{
????????tbName.Text?=?string.Empty;
????}
}
評(píng)論
共有 條評(píng)論