2008年9月3日 星期三

GRIDVIEW正確處理多行文字方框換行之查詢結果

//with template
((Label)e.Row.FindControl("LabelAfterCourseStatus")).Text = ((Label)e.Row.FindControl("LabelAfterCourseStatus")).Text.Replace("\r\n", "<br/>");

//without template
e.Row.Cells[1].Text=e.Row.Cells[1].Text.Replace("\\n", "<br/>");

PS. 請將<>改成小寫

vue3-simple-alert 學習心得

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