資源簡介
C# ASP.NET 實戰項目源代碼 AJAX校內數碼相冊
代碼片段和文件信息
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)
????{
????????//聲明類實例
????????Album?am?=?new?Album();
????????//執行插入數據的操作
????????int?result?=?am.AddCategory(tbName.Text.Trim()?ddlStatus.SelectedValue);
????????if?(result?==?0)
????????{
????????????scriptManager.RegisterStartupscript(this?GetType()?““
????????????????????????????????????????????????“alert(‘已有此分類,請重新填寫!‘);location.href=‘Category.aspx‘;“?true);
????????}
????????else
????????{
????????????if?(result?>?0)
????????????{
????????????????scriptManager.RegisterStartupscript(this?GetType()?““
????????????????????????????????????????????????????“alert(‘創建成功^_^快快上傳照片吧!‘);location.href=‘Photo_load.aspx‘;“?true);
????????????}
????????????else
????????????{
????????????????return;
????????????}
????????}
????}
????protected?void?imgBtn_reset_Click(object?sender?ImageClickEventArgs?e)
????{
????????tbName.Text?=?string.Empty;
????}
}
評論
共有 條評論