2010年4月29日 星期四

GridView 刪除按鈕添加確認訊息範例

1. GridView加入編輯/刪除按鈕於最後
<asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />

2. 於 rowdatabound 事件加入下面程式
if (e.Row.RowType == DataControlRowType.DataRow && (e.Row.RowState & DataControlRowState.Edit) == 0)
{
LinkButton lb = e.Row.Cells[e.Row.Cells.Count - 1].Controls[2] as LinkButton;
lb.OnClientClick = "if (!confirm('確定刪除?')) return false;";
}

2010年4月13日 星期二

字串值存入XML檔案如何避免"不合法的名稱字元"訊息

參考以下函數

private string StringToXML(string XMLstring)
{
StringWriter sw = new StringWriter();
System.Xml.XmlTextWriter xmlw = new System.Xml.XmlTextWriter(sw);
xmlw.WriteString(XMLstring);
xmlw.Close();
return sw.ToString();
}

vue3-simple-alert 學習心得

官網 顯示提示輸入訊息並於按下確定時檢查是否有輸入,防止未輸入就按確定,且和按取消用不同邏輯處理 VueSimpleAlert.fire({     title: '請輸入原因',     input: 'text',     showCancel...