Asp.net常用的51個代碼

来源:http://www.cnblogs.com/shouce/archive/2016/03/26/5321900.html
-Advertisement-
Play Games

1.//彈出對話框.點擊轉向指定頁面 2.//彈出對話框 3.//刪除文件 4.//綁定下拉列表框datalist 5.//時間去秒顯示 6.//標題帶鏈接 7.//修改轉向 8.//彈出確定按鈕 9.//輸出數據格式化 "{0:F2}" 是格式 F2表示小數點後剩兩位 10.//提取動態網頁內容 ...


1.//彈出對話框.點擊轉向指定頁面

  1. Response.Write(&quot;<script>window.alert('該會員沒有提交申請,請重新提交!')</script>&quot;);
  2. Response.Write(&quot;<script>window.location ='http://www.51aspx.com/bizpulic/upmeb.aspx'</script>&quot;);

2.//彈出對話框

  1. Response.Write(&quot;<script language='javascript'>alert('產品添加成功!')</script >&quot;);

3.//刪除文件

  1. string filename =&quot;20059595157517.jpg&quot;;
  2. pub.util.DeleteFile(HttpContext.Current.Server.MapPath(&quot;../file/&quot;)+filename);

4.//綁定下拉列表框datalist

  1. System.Data.DataView dv=conn.Exec_ex(&quot;select -1 as code,'請選擇經營模式' as content from dealin union select code,content from dealin&quot;);
  2. this.dealincode.DataSource=dv;
  3. this.dealincode.DataTextField=&quot;content&quot;;
  4. this.dealincode.DataValueField=&quot;code&quot;;    
  5. this.dealincode.DataBind();
  6. this.dealincode.Items.FindByValue(dv[0][&quot;dealincode&quot;].ToString()).Selected=true;

5.//時間去秒顯示

  1. <%# System.DateTime.Parse(DataBinder.Eval(Container.DataItem,&quot;begtime&quot;).ToString()).ToShortDateString()%>

6.//標題帶鏈接

  1. <%# &quot;<a class=\&quot;12c\&quot; target=\&quot;_blank\&quot; href=\&quot;http://www.51aspx/CV/_&quot;+DataBinder.Eval(Container.DataItem,&quot;procode&quot;)+&quot;.html\&quot;>&quot;+ DataBinder.Eval(Container.DataItem,&quot;proname&quot;)+&quot;</a>&quot;%>

7.//修改轉向

  1. <%# &quot;<A href=\&quot;editpushpro.aspx?id=&quot;+DataBinder.Eval(Container.DataItem,&quot;code&quot;)+&quot;\&quot;>&quot;+&quot;修改&quot;+&quot;</A>&quot;%>

8.//彈出確定按鈕

  1. <%# &quot;<A id=\&quot;btnDelete\&quot; onclick=\&quot;return confirm('你是否確定刪除這條記錄嗎?');\&quot; href=\&quot;pushproduct.aspx?dl=&quot;+DataBinder.Eval(Container.DataItem,&quot;code&quot;)+&quot;\&quot;>&quot;+&quot;刪除&quot;+&quot;</A>&quot;%>

9.//輸出數據格式化 "{0:F2}" 是格式 F2表示小數點後剩兩位

  1. <%# DataBinder.Eval(Container, &quot;DataItem.PriceMoney&quot;,&quot;{0:F2}&quot;) %>

10.//提取動態網頁內容

  1. Uri uri = new Uri(&quot;http://www.51aspx.com/&quot;);
  2.    WebRequest req = WebRequest.Create(uri);
  3.    WebResponse resp = req.GetResponse();
  4.    Stream str = resp.GetResponseStream();
  5.    StreamReader sr = new StreamReader(str,System.Text.Encoding.Default);
  6.    string t = sr.ReadToEnd();
  7.    this.Response.Write(t.ToString());

11.//獲取" . "後面的字元

  1. i.ToString().Trim().Substring(i.ToString().Trim().LastIndexOf(&quot;.&quot;)+1).ToLower().Trim()

複製代碼

12. 打開新的視窗並傳送參數: 傳送參數:

  1. response.write(&quot;<script>window.open(’*.aspx?id=&quot;+this.DropDownList1.SelectIndex+&quot;&amp;id1=&quot;+...+&quot;’)</script>&quot;)

接收參數:

  1. string a = Request.QueryString(&quot;id&quot;);
  2. string b = Request.QueryString(&quot;id1&quot;);

12.為按鈕添加對話框

  1. Button1.Attributes.Add(&quot;onclick&quot;,&quot;return confirm(’確認?’)&quot;);
  2. button.attributes.add(&quot;onclick&quot;,&quot;if(confirm(’are you sure...?’)){return true;}else{return false;}&quot;)

13.刪除表格選定記錄

  1. int intEmpID = (int)MyDataGrid.DataKeys[e.Item.ItemIndex];
  2. string deleteCmd = &quot;Delete from Employee where emp_id = &quot; + intEmpID.ToString()

14.刪除表格記錄警告

  1. private void DataGrid_ItemCreated(Object sender,DataGridItemEventArgs e)
  2. {
  3. switch(e.Item.ItemType)
  4. {
  5. case ListItemType.Item :
  6. case ListItemType.AlternatingItem :
  7. case ListItemType.EditItem:
  8. TableCell myTableCell;
  9. myTableCell = e.Item.Cells[14];
  10. LinkButton myDeleteButton ;
  11. myDeleteButton = (LinkButton)myTableCell.Controls[0];
  12. myDeleteButton.Attributes.Add(&quot;onclick&quot;,&quot;return confirm(’您是否確定要刪除這條信息’);&quot;);
  13. break;
  14. default:
  15. break;
  16. }
  17. }

15.點擊表格行鏈接另一頁

  1. private void grdCustomer_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
  2. {
  3. //點擊表格打開
  4. if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
  5. e.Item.Attributes.Add(&quot;onclick&quot;,&quot;window.open(’Default.aspx?id=&quot; + e.Item.Cells[0].Text + &quot;’);&quot;);
  6. }

雙擊表格連接到另一頁在itemDataBind事件中

  1. if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
  2. {
  3. string orderItemID =e.item.cells[1].Text;
  4. e.item.Attributes.Add(&quot;ondblclick&quot;, &quot;location.href=’../ShippedGrid.aspx?id=&quot; + orderItemID + &quot;’&quot;);
  5. }

雙擊表格打開新一頁

  1. if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
  2. {
  3. string orderItemID =e.item.cells[1].Text;
  4. e.item.Attributes.Add(&quot;ondblclick&quot;, &quot;open(’../ShippedGrid.aspx?id=&quot; + orderItemID + &quot;’)&quot;);
  5. }

16.表格超連接列傳遞參數

  1. <asp:HyperLinkColumn Target=&quot;_blank&quot; headertext=&quot;ID號&quot; DataTextField=&quot;id&quot; NavigateUrl=&quot;aaa.aspx?id=’
  2. <%# DataBinder.Eval(Container.DataItem, &quot;數據欄位1&quot;)%>’ &amp; name=’<%# DataBinder.Eval(Container.DataItem, &quot;數據欄位2&quot;)%>’ />

17.表格點擊改變顏色

  1. if (e.Item.ItemType == ListItemType.Item ||e.Item.ItemType == ListItemType.AlternatingItem)
  2. {
  3. e.Item.Attributes.Add(&quot;onclick&quot;,&quot;this.style.backgroundColor=’#99cc00’;
  4. this.style.color=’buttontext’;this.style.cursor=’default’;&quot;);
  5. }

寫在DataGrid的_ItemDataBound里

  1. if (e.Item.ItemType == ListItemType.Item ||e.Item.ItemType == ListItemType.AlternatingItem)
  2. {
  3. e.Item.Attributes.Add(&quot;onmouseover&quot;,&quot;this.style.backgroundColor=’#99cc00’;
  4. this.style.color=’buttontext’;this.style.cursor=’default’;&quot;);
  5. e.Item.Attributes.Add(&quot;onmouseout&quot;,&quot;this.style.backgroundColor=’’;this.style.color=’’;&quot;);
  6. }

18.關於日期格式日期格式設定 DataFormatString="{0:yyyy-MM-dd}" 我覺得應該在itembound事件中 e.items.cell["你的列"].text=DateTime.Parse(e.items.cell["你的列"].text.ToString("yyyy-MM-dd")) 19.獲取錯誤信息併到指定頁面不要使用Response.Redirect,而應該使用Server.Transfer e.g

  1. // in global.asax
  2. protected void Application_Error(Object sender, EventArgs e) {
  3. if (Server.GetLastError() is HttpUnhandledException)
  4. Server.Transfer(&quot;MyErrorPage.aspx&quot;);

//其餘的非HttpUnhandledException異常交給ASP.NET自己處理就okay了 :) } Redirect會導致post-back的產生從而丟失了錯誤信息,所以頁面導嚮應該直接在伺服器端執行,這樣就可以在錯誤處理頁面得到出錯信息併進行相應的處理 20.清空Cookie

  1. Cookie.Expires=[DateTime];
  2. Response.Cookies(&quot;UserName&quot;).Expires = 0

21.自定義異常處理

  1. //自定義異常處理類
  2. using System;
  3. using System.Diagnostics;
  4. namespace MyAppException
  5. {
  6. /// <summary>
  7. /// 從系統異常類ApplicationException繼承的應用程式異常處理類。
  8. /// 自動將異常內容記錄到Windows NT/2000的應用程式日誌
  9. /// </summary>
  10. public class AppException:System.ApplicationException
  11. {
  12. public AppException()
  13. {
  14. if (ApplicationConfiguration.EventLogEnabled)LogEvent(&quot;出現一個未知錯誤。&quot;);
  15. }
  16. public AppException(string message)
  17. {
  18. LogEvent(message);
  19. }
  20. public AppException(string message,Exception innerException)
  21. {
  22. LogEvent(message);
  23. if (innerException != null)
  24. {
  25. LogEvent(innerException.Message);
  26. }
  27. }
  28. //日誌記錄類
  29. using System;
  30. using System.Configuration;
  31. using System.Diagnostics;
  32. using System.IO;
  33. using System.Text;
  34. using System.Threading;
  35. namespace MyEventLog
  36. {
  37. /// <summary>
  38. /// 事件日誌記錄類,提供事件日誌記錄支持
  39. /// <remarks>
  40. /// 定義了4個日誌記錄方法 (error, warning, info, trace)
  41. /// </remarks>
  42. /// </summary>
  43. public class ApplicationLog
  44. {
  45. /// <summary>
  46. /// 將錯誤信息記錄到Win2000/NT事件日誌中
  47. /// <param name=&quot;message&quot;>需要記錄的文本信息</param>
  48. /// </summary>
  49. public static void WriteError(String message)
  50. {
  51. WriteLog(TraceLevel.Error, message);
  52. }
  53. /// <summary>
  54. /// 將警告信息記錄到Win2000/NT事件日誌中
  55. /// <param name=&quot;message&quot;>需要記錄的文本信息</param>
  56. /// </summary>
  57. public static void WriteWarning(String message)
  58. {
  59. WriteLog(TraceLevel.Warning, message);
  60. }
  61. /// <summary>
  62. /// 將提示信息記錄到Win2000/NT事件日誌中
  63. /// <param name=&quot;message&quot;>需要記錄的文本信息</param>
  64. /// </summary>
  65. public static void WriteInfo(String message)
  66. {
  67. WriteLog(TraceLevel.Info, message);
  68. }
  69. /// <summary>
  70. /// 將跟蹤信息記錄到Win2000/NT事件日誌中
  71. /// <param name=&quot;message&quot;>需要記錄的文本信息</param>
  72. /// </summary>
  73. public static void WriteTrace(String message)
  74. {
  75. WriteLog(TraceLevel.Verbose, message);
  76. }
  77. /// <summary>
  78. /// 格式化記錄到事件日誌的文本信息格式
  79. /// <param name=&quot;ex&quot;>需要格式化的異常對象</param>
  80. /// <param name=&quot;catchInfo&quot;>異常信息標題字元串.</param>
  81. /// <retvalue>
  82. /// <para>格式後的異常信息字元串,包括異常內容和跟蹤堆棧.</para>
  83. /// </retvalue>
  84. /// </summary>
  85. public static String FormatException(Exception ex, String catchInfo)
  86. {
  87. StringBuilder strBuilder = new StringBuilder();
  88. if (catchInfo != String.Empty)
  89. {
  90. strBuilder.Append(catchInfo).Append(&quot;\r\n&quot;);
  91. }
  92. strBuilder.Append(ex.Message).Append(&quot;\r\n&quot;).Append(ex.StackTrace);
  93. return strBuilder.ToString();
  94. }
  95. /// <summary>
  96. /// 實際事件日誌寫入方法
  97. /// <param name=&quot;level&quot;>要記錄信息的級別(error,warning,info,trace).</param>
  98. /// <param name=&quot;messageText&quot;>要記錄的文本.</param>
  99. /// </summary>
  100. private static void WriteLog(TraceLevel level, String messageText)
  101. {
  102. try
  103. {
  104. EventLogEntryType LogEntryType;
  105. switch (level)
  106. {
  107. case TraceLevel.Error:
  108. LogEntryType = EventLogEntryType.Error;
  109. break;
  110. case TraceLevel.Warning:
  111. LogEntryType = EventLogEntryType.Warning;
  112. break;
  113. case TraceLevel.Info:
  114. LogEntryType = EventLogEntryType.Information;
  115. break;
  116. case TraceLevel.Verbose:
  117. LogEntryType = EventLogEntryType.SuccessAudit;
  118. break;
  119. default:
  120. LogEntryType = EventLogEntryType.SuccessAudit;
  121. break;
  122. }
  123. EventLog eventLog = new EventLog(&quot;Application&quot;, ApplicationConfiguration.EventLogMachineName, ApplicationConfiguration.EventLogSourceName );
  124. //寫入事件日誌
  125. eventLog.WriteEntry(messageText, LogEntryType);
  126. }
  127. catch {} //忽略任何異常
  128. }
  129. } //class ApplicationLog
  130. }

22.Panel 橫向滾動,縱向自動擴展

  1. <asp:panel style=&quot;overflow-x:scroll;overflow-y:auto;&quot;></asp:panel>

23.回車轉換成Tab (1)

  1. <script language=&quot;javascript&quot; for=&quot;document&quot; event=&quot;onkeydown&quot;>
  2. if(event.keyCode==13 &amp;&amp; event.srcElement.type!=’button’ &amp;&amp; event.srcElement.type!=’submit’ &amp;&amp; event.srcElement.type!=’reset’ &amp;&amp; event.srcElement.type!=’’&amp;&amp; event.srcElement.type!=’textarea’);
  3. event.keyCode=9;
  4. </script>

(2)  //當在有keydown事件的控制項上敲回車時,變為tab

  1. public void Tab(System.Web .UI.WebControls .WebControl webcontrol)
  2. {
  3. webcontrol.Attributes .Add (&quot;onkeydown&quot;, &quot;if(event.keyCode==13) event.keyCode=9&quot;);
  4. }
  5. 24.DataGrid超級連接列
  6. DataNavigateUrlField=&quot;欄位名&quot; DataNavigateUrlFormatString=&quot;http://xx/inc/delete.aspx?ID={0}&quot;

25.DataGrid行隨滑鼠變色

  1. private void DGzf_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
  2. {
  3. if (e.Item.ItemType!=ListItemType.Header)
  4. {
  5. e.Item.Attributes.Add( &quot;onmouseout&quot;,&quot;this.style.backgroundColor=\&quot;&quot;+e.Item.Style[&quot;BACKGROUND-COLOR&quot;]+&quot;\&quot;&quot;);
  6. e.Item.Attributes.Add( &quot;onmouseover&quot;,&quot;this.style.backgroundColor=\&quot;&quot;+ &quot;#EFF3F7&quot;+&quot;\&quot;&quot;);
  7. }
  8. }

26.模板列

  1. <ASP:TEMPLATECOLUMN visible=&quot;False&quot; sortexpression=&quot;demo&quot; headertext=&quot;ID&quot;>
  2. <ITEMTEMPLATE>
  3. <ASP LABEL text=’<%# DataBinder.Eval(Container.DataItem, &quot;ArticleID&quot;)%>’ runat=&quot;server&quot; width=&quot;80%&quot; id=&quot;lblColumn&quot; />
  4. </ITEMTEMPLATE>
  5. </ASP:TEMPLATECOLUMN>
  6. <ASP:TEMPLATECOLUMN headertext=&quot;選中&quot;>
  7. <HEADERSTYLE wrap=&quot;False&quot; horiz></HEADERSTYLE>
  8. <ITEMTEMPLATE>
  9. <ASP:CHECKBOX id=&quot;chkExport&quot; runat=&quot;server&quot; />
  10. </ITEMTEMPLATE>
  11. <EDITITEMTEMPLATE>
  12. <ASP:CHECKBOX id=&quot;chkExportON&quot; runat=&quot;server&quot; enabled=&quot;true&quot; />
  13. </EDITITEMTEMPLATE>
  14. </ASP:TEMPLATECOLUMN>

後臺代碼

  1. protected void CheckAll_CheckedChanged(object sender, System.EventArgs e)
  2. {
  3. //改變列的選定,實現全選或全不選。
  4. CheckBox chkExport ;
  5. if( CheckAll.Checked)
  6. {
  7. foreach(DataGridItem oDataGridItem in MyDataGrid.Items)
  8. {
  9. chkExport = (CheckBox)oDataGridItem.FindControl(&quot;chkExport&quot;);
  10. chkExport.Checked = true;
  11. }
  12. }
  13. else
  14. {
  15. foreach(DataGridItem oDataGridItem in MyDataGrid.Items)
  16. {
  17. chkExport = (CheckBox)oDataGridItem.FindControl(&quot;chkExport&quot;);
  18. chkExport.Checked = false;
  19. }
  20. }
  21. }

27.數字格式化

  1. 【<%#Container.DataItem(&quot;price&quot;)%>的結果是500.0000,怎樣格式化為500.00?】
  2. <%#Container.DataItem(&quot;price&quot;,&quot;{0:¥#,##0.00}&quot;)%>
  3. int i=123456;
  4. string s=i.ToString(&quot;###,###.00&quot;);

28.日期格式化【aspx頁面內:<%# DataBinder.Eval(Container.DataItem,"Company_Ureg_Date")%>顯示為: 2004-8-11 19:44:28 我只想要:2004-8-11 】<%# DataBinder.Eval(Container.DataItem,"Company_Ureg_Date","{0:yyyy-M-d}")%>應該如何改?【格式化日期】取出來,一般是object((DateTime)objectFromDB).ToString("yyyy-MM-dd"); 【日期的驗證表達式】A.以下正確的輸入格式: [2004-2-29], [2004-02-29 10:29:39 pm], [2004/12/31] ^((\d{2}(([02468][048])|([13579][26]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|([1-2][0-9])))))|(\d{2}(([02468][1235679])|([13579][01345789]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|(1[0-9])|(2[0-8]))))))(\s(((0?[1-9])|(1[0-2]))\:([0-5][0-9])((\s)|(\:([0-5][0-9])\s))([AM|PM|am|pm]{2,2})))?$ B.以下正確的輸入格式:[0001-12-31], [9999 09 30], [2002/03/03] ^\d{4}[\-\/\s]?((((0[13578])|(1[02]))[\-\/\s]?(([0-2][0-9])|(3[01])))|(((0[469])|(11))[\-\/\s]?(([0-2][0-9])|(30)))|(02[\-\/\s]?[0-2][0-9]))$ 【大小寫轉換】 HttpUtility.HtmlEncode(string); HttpUtility.HtmlDecode(string) 29.如何設定全局變數Global.asax中Application_Start()事件中添加Application[屬性名] = xxx; 就是你的全局變數 30.怎樣作到HyperLinkColumn生成的連接後,點擊連接,打開新視窗?HyperLinkColumn有個屬性Target,將器值設置成"_blank"即可.(Target="_blank") 【ASPNETMENU】點擊菜單項彈出新視窗在你的menuData.xml文件的菜單項中加入URLTarget="_blank",如:

  1. <?xml version=&quot;1.0&quot; encoding=&quot;GB2312&quot;?>
  2. <MenuData ImagesBaseURL=&quot;images/&quot;>
  3. <MenuGroup>
  4. <MenuItem Label=&quot;內參信息&quot; URL=&quot;Infomation.aspx&quot; >
  5. <MenuGroup ID=&quot;BBC&quot;>
  6. <MenuItem Label=&quot;公告信息&quot; URL=&quot;Infomation.aspx&quot; URLTarget=&quot;_blank&quot; LeftIcon=&quot;file.gif&quot;/>
  7. <MenuItem Label=&quot;編製信息簡報&quot; URL=&quot;NewInfo.aspx&quot; LeftIcon=&quot;file.gif&quot; />

最好將你的aspnetmenu升級到1.2版 31.讀取DataGrid控制項TextBox值

  1. foreach(DataGrid dgi in yourDataGrid.Items)
  2. {
  3. TextBox tb = (TextBox)dgi.FindControl(&quot;yourTextBoxId&quot;);
  4. tb.Text....
  5. }

33.在DataGrid中有3個模板列包含Textbox分別為 DG_ShuLiang (數量) DG_DanJian(單價) DG_JinE(金額)分別在5.6.7列,要求在錄入數量及單價的時候自動算出金額即:數量*單價=金額還要求錄入時限製為 數值型.我如何用客戶端腳本實現這個功能?

  1. <asp:TemplateColumn HeaderText=&quot;數量&quot;>
  2. <ItemTemplate>
  3. <asp:TextBox id=&quot;ShuLiang&quot; runat=’server’ Text=’<%# DataBinder.Eval(Container.DataItem,&quot;DG_ShuLiang&quot;)%>’
  4.  
  5. />
  6. <asp:RegularExpressionValidator id=&quot;revS&quot; runat=&quot;server&quot; C ErrorMessage=&quot;must be integer&quot; Validati />
  7. </ItemTemplate>
  8. </asp:TemplateColumn>
  9. <asp:TemplateColumn HeaderText=&quot;單價&quot;>
  10. <ItemTemplate>
  11. <asp:TextBox id=&quot;DanJian&quot; runat=’server’ Text=’<%# DataBinder.Eval(Container.DataItem,&quot;DG_DanJian&quot;)%>’
  12.  
  13. />
  14. <asp:RegularExpressionValidator id=&quot;revS2&quot; runat=&quot;server&quot; C ErrorMessage=&quot;must be numeric&quot; Validati />
  15. </ItemTemplate>
  16. </asp:TemplateColumn>
  17. <asp:TemplateColumn HeaderText=&quot;金額&quot;>
  18. <ItemTemplate>
  19. <asp:TextBox id=&quot;JinE&quot; runat=’server’ Text=’<%# DataBinder.Eval(Container.DataItem,&quot;DG_JinE&quot;)%>’ />
  20. </ItemTemplate>
  21. </asp:TemplateColumn><script language=&quot;javascript&quot;>
  22. function DoCal()
  23. {
  24. var e = event.srcElement;
  25. var row = e.parentNode.parentNode;
  26. var txts = row.all.tags(&quot;INPUT&quot;);
  27. if (!txts.length || txts.length < 3)
  28. return;
  29. var q = txts[txts.length-3].value;
  30. var p = txts[txts.length-2].value;
  31. if (isNaN(q) || isNaN(p))
  32. return;
  33. q = parseInt(q);
  34. p = parseFloat(p);
  35. txts[txts.length-1].value = (q * p).toFixed(2);
  36. }
  37. </script>

34.datagrid選定比較底下的行時,為什麼總是刷新一下,然後就滾動到了最上面,剛纔選定的行因屏幕的關係就看不到了。 page_load page.smartNavigation=true 35.在Datagrid中修改數據,當點擊編輯鍵時,數據出現在文本框中,怎麼控制文本框的大小 ?

  1. private void DataGrid1_ItemDataBound(obj sender,DataGridItemEventArgs e)
  2. {
  3. for(int i=0;i<e.Item.Cells.Count-1;i++)
  4. if(e.Item.ItemType==ListItemType.EditType)
  5. {
  6. e.Item.Cells.Attributes.Add(&quot;Width&quot;, &quot;80px&quot;)
  7. }
  8. }

36.對話框

  1. private static string ScriptBegin = &quot;<script language=\&quot;JavaScript\&quot;>&quot;;
  2. private static string ScriptEnd = &quot;</script>&quot;;
  3. public static void ConfirmMessageBox(string PageTarget,string Content)
  4. {
  5. string C+Content+&quot;’);&quot;+&quot;if(retValue){window.location=’&quot;+PageTarget+&quot;’;}&quot;;
  6. ConfirmContent=ScriptBegin + ConfirmContent + ScriptEnd;
  7. Page ParameterPage = (Page)System.Web.HttpContext.Current.Handler;
  8. ParameterPage.RegisterStartupScript(&quot;confirm&quot;,ConfirmContent);
  9. //Response.Write

複製代碼

(strScript); } 37. 將時間格式化:string aa=DateTime.Now.ToString("yyyyMMdd"); 1.1 取當前年月日時分秒 currentTime=System.DateTime.Now; 1.2 取當前年 int = DateTime.Now.Year; 1.3 取當前月 int = DateTime.Now.Month; 1.4 取當前日 int = DateTime.Now.Day; 1.5 取當前時 int = DateTime.Now.Hour; 1.6 取當前分 int = DateTime.Now.Minute; 1.7 取當前秒 int = DateTime.Now.Second; 1.8 取當前毫秒 int 毫秒= DateTime.Now.Millisecond; 38.自定義分頁代碼:先定義變數 

  1. public static int pageCount; //總頁面數
  2. public static int curPageIndex=1; //當前頁面
  3. 下一頁:
  4. if(DataGrid1.CurrentPageIndex < (DataGrid1.PageCount - 1))
  5. {
  6. DataGrid1.CurrentPageIndex += 1;
  7. curPageIndex+=1;
  8. }
  9. bind(); // DataGrid1數據綁定函數
  10. 上一頁:
  11. if(DataGrid1.CurrentPageIndex >0)
  12. {
  13. DataGrid1.CurrentPageIndex += 1;
  14. curPageIndex-=1;
  15. }
  16. bind(); // DataGrid1數據綁定函數
  17. 直接頁面跳轉:
  18. int a=int.Parse(JumpPage.Value.Trim());//JumpPage.Value.Trim()為跳轉值
  19. if(a<DataGrid1.PageCount)
  20. {
  21. this.DataGrid1.CurrentPageIndex=a;
  22. }
  23. bind();

39DataGrid使用: 添加刪除確認:

  1. private void DataGrid1_ItemCreated(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
  2. {
  3. foreach(DataGridItem di in this.DataGrid1.Items)
  4. {
  5. if(di.ItemType==ListItemType.Item||di.ItemType==ListItemType.AlternatingItem)
  6. {
  7. ((LinkButton)di.Cells[8].Controls[0]).Attributes.Add(&quot;onclick&quot;,&quot;return confirm(’確認刪除此項嗎?’);&quot;);
  8. }
  9. }
  10. }

樣式交替:

  1. ListItemType itemType = e.Item.ItemType;
  2. if (itemType == ListItemType.Item )
  3. {
  4. e.Item.Attributes[&quot;onmouseout&quot;] = &quot;javascript:this.style.backgroundColor=’#FFFFFF’;&quot;;
  5. e.Item.Attributes[&quot;onmouseover&quot;] = &quot;javascript:this.style.backgroundColor=’#d9ece1’;cursor=’hand’;&quot; ;
  6. }
  7. else if( itemType == ListItemType.AlternatingItem)
  8. {
  9. e.Item.Attributes[&quot;onmouseout&quot;] = &quot;javascript:this.style.backgroundColor=’#a0d7c4’;&quot;;
  10. e.Item.Attributes[&quot;onmouseover&quot;] = &quot;javascript:this.style.backgroundColor=’#d9ece1’;cursor=’hand’;&quot; ;
  11. }

添加一個編號列:

  1. DataTable dt= c.ExecuteRtnTableForAccess(sqltxt); //執行sql返回的DataTable
  2. DataColumn dc=dt.Columns.Add(&quot;number&quot;,System.Type.GetType(&quot;System.String&quot;));
  3. for(int i=0;i<dt.Rows.Count;i++)
  4. {
  5. dt.Rows[&quot;number&quot;]=(i+1).ToString();
  6. }
  7. DataGrid1.DataSource=dt;
  8. DataGrid1.DataBind();
  9. DataGrid1中添加一個CheckBox,頁面中添加一個全選框
  10. private void CheckBox2_CheckedChanged(object sender, System.EventArgs e)
  11. {
  12. foreach(DataGridItem thisitem in DataGrid1.Items)
  13. {
  14. ((CheckBox)thisitem.Cells[0].Controls[1]).Checked=CheckBox2.Checked;
  15. }
  16. }

將當前頁面中DataGrid1顯示的數據全部刪除

  1. foreach(DataGridItem thisitem in DataGrid1.Items)
  2. {
  3. if(((CheckBox)thisitem.Cells[0].Controls[1]).Checked)
  4. {
  5. string strloginid= DataGrid1.DataKeys[thisitem.ItemIndex].ToString();
  6. Del (strloginid); //刪除函數
  7. }
  8. }

40.當文件在不同目錄下,需要獲取資料庫連接字元串(如果連接字元串放在Web.config,然後在Global.asax中初始化) Application_Start中添加以下代碼:

  1. Application[&quot;ConnStr&quot;]=this.Context.Request.PhysicalApplicationPath+ConfigurationSettings.
  2. AppSettings[&quot;ConnStr&quot;].ToString();

3 41 變數.ToString() 字元型轉換 轉為字元串

  1. 12345.ToString(&quot;n&quot;); //生成 12,345.00
  2. 12345.ToString(&quot;C&quot;); //生成 ¥12,345.00
  3. 12345.ToString(&quot;e&quot;); //生成 1.234500e+004
  4. 12345.ToString(&quot;f4&quot;); //生成 12345.0000
  5. 12345.ToString(&quot;x&quot;); //生成 3039 (16進位)
  6. 12345.ToString(&quot;p&quot;); //生成 1,234,500.00%

42、變數.Substring(參數1,參數2); 截取字串的一部分,參數1為左起始位數,參數2為截取幾位。 如:string s1 = str.Substring(0,2); 43.在自己的網站上登陸其他網站:(如果你的頁面是通過嵌套方式的話,因為一個頁面只能有一個FORM,這時可以導向另外一個頁面再提交登陸信息)

  1. <SCRIPT language=&quot;javascript&quot;>
  2. <!--
  3. function gook(pws)
  4. {
  5. frm.submit();
  6. }
  7. //-->
  8. </SCRIPT> <body leftMargin=&quot;0&quot; topMargin=&quot;0&quot;  marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>
  9. <form name=&quot;frm&quot; action=&quot; http://www.51aspx.com &quot; method=&quot;post&quot;>
  10. <tr>
  11. <td>
  12. <input id=&quot;f_user&quot; type=&quot;hidden&quot; size=&quot;1&quot; name=&quot;f_user&quot; runat=&quot;server&quot;>
  13. <input id=&quot;f_domain&quot; type=&quot;hidden&quot; size=&quot;1&quot; name=&quot;f_domain&quot; runat=&quot;server&quot;>
  14. <input class=&quot;box&quot; id=&quot;f_pass&quot; type=&quot;hidden&quot; size=&quot;1&quot; name=&quot;pwshow&quot; runat=&quot;server&quot;>
  15. <INPUT id=&quot;lng&quot; type=&quot;hidden&quot; maxLength=&quot;20&quot; size=&quot;1&quot; value=&quot;5&quot; name=&quot;lng&quot;>
  16. <INPUT id=&quot;tem&quot; type=&quot;hidden&quot; size=&quot;1&quot; value=&quot;2&quot; name=&quot;tem&quot;>
  17. </td>
  18. </tr>
  19. </form>

文本框的名稱必須是你要登陸的網頁上的名稱,如果源碼不行可以用vsniffer 看看。 下麵是獲取用戶輸入的登陸信息的代碼:

  1. string name;
  2. name=Request.QueryString[&quot;EmailName&quot;];
  3. try
  4. {
  5. int a=name.IndexOf(&quot;@&quot;,0,name.Length);
  6. f_user.Value=name.Substring(0,a);
  7. f_domain.Value=name.Substring(a+1,name.Length-(a+1));
  8. f_pass.Value=Request.QueryString[&quot;Psw&quot;];
  9. }
  10. catch
  11. {
  12. Script.Alert(&quot;錯誤的郵箱!&quot;);
  13. Server.Transfer(&quot;index.aspx&quot;);
  14. }

44.datagrid分頁中如果刪除時出現超出索引

  1. public void jumppage(System.Web.UI.WebControls.DataGrid dg)
  2. {
  3. int int_PageLess; //定義頁面跳轉的頁數
  4. //如果當前頁是最後一頁
  5. if(dg.CurrentPageIndex == dg.PageCount-1)
  6. {
  7. //如果就只有一頁
  8. if(dg.CurrentPageIndex == 0)
  9. {
  10. //刪除後頁面停在當前頁
  11. dg.CurrentPageIndex = dg.PageCount-1;
  12. }
  13. else
  14. {
  15. //如果最後一頁只有一條記錄
  16. if((dg.Items.Count % dg.PageSize == 1) || dg.PageSize == 1)
  17. {
  18. //把最後一頁最後一條記錄刪除後,頁面應跳轉到前一頁
  19. int_PageLess = 2;
  20. }
  21. else //如果最後一頁的記錄數大於1,那麼在最後一頁刪除記錄後仍然停在當前頁
  22. {
  23. int_PageLess = 1;
  24. }
  25. dg.CurrentPageIndex = dg.PageCount - int_PageLess;
  26. }
  27. }
  28. }

45.警告視窗 /**//// <summary> /// 伺服器端彈出alert對話框 /// </summary> /// <param name="str_Message">提示信息,例子:"不能為空!"</param> /// <param name="page">Page</param> public void Alert(string str_Message,Page page) { page.RegisterStartupScript("","<script>alert('"+str_Message+"');</script>"); } 36.重載此警告視窗,使某控制項獲得焦點

  1. /**//// <summary>
  2. /// 伺服器端彈出alert對話框,並使控制項獲得焦點
  3. /// </summary>
  4. /// <param name=&quot;str_Ctl_Name&quot;>獲得焦點控制項Id值,比如:txt_Name</param>
  5. /// <param name=&quot;str_Message&quot;>提示信息,例子:&quot;請輸入您姓名!&quot;</param>
  6. /// <param name=&quot;page&quot;>Page類</param>
  7. public void Alert(string str_Ctl_Name,string str_Message,Page page)
  8. {
  9. page.RegisterStartupScript(&quot;&quot;,&quot;<script>alert('&quot;+str_Message+&quot;');document.forms(0).&quot;+str_Ctl_Name+&quot;.focus(); document.forms(0).&quot;+str_Ctl_Name+&quot;.select();</script>&quot;);
  10. }

47.確認對話框

  1. /**//// <summary>
  2. /// 伺服器端彈出confirm對話框
  3. /// </summary>
  4. /// <param name=&quot;str_Message&quot;>提示信息,例子:&quot;您是否確認刪除!&quot;</param>
  5. /// <param name=&quot;btn&quot;>隱藏Botton按鈕Id值,比如:btn_Flow</param>
  6. /// <param name=&quot;page&quot;>Page類</param>
  7. public void Confirm(string str_Message,string btn,Page page)
  8. {
  9. page.RegisterStartupScript(&quot;&quot;,&quot;<script> if (confirm('&quot;+str_Message+&quot;')==true){document.forms(0).&quot;+btn+&quot;.click();}</script>&quot;);
  10. }

48.重載確認對話框,點擊確定觸發一個隱藏按鈕事件,點擊取消觸發一個隱藏按鈕事件

  1. /**//// <summary>
  2. /// 伺服器端彈出confirm對話框,詢問用戶準備轉向那些操作,包括“確定”和“取消”時的操作
  3. /// </summary>
  4. /// <param name=&quot;str_Message&quot;>提示信息,比如:&quot;成功增加數據,單擊\&quot;確定\&quot;按鈕填寫流程,單擊\&quot;取消\&quot;修改數據&quot;</param>
  5. /// <param name=&quot;btn_Redirect_Flow&quot;>&quot;確定&quot;按鈕id值</param>
  6. /// <param name=&quot;btn_Redirect_Self&quot;>&quot;取消&quot;按鈕id值</param>
  7. /// <param name=&quot;page&quot;>Page類</param>
  8. public void Confirm(string str_Message,string btn_Redirect_Flow,string btn_Redirect_Self,Page page)
  9. {
  10. page.RegisterStartupScript(&quot;&quot;,&quot;<script> if (confirm('&quot;+str_Message+&quot;')==true){document.forms(0).&quot;+btn_Redirect_Flow+&quot;.click();}else{document.forms(0).&quot;+btn_Redirect_Self+&quot;.click();}</script>&quot;);
  11. }

49.獲得焦點

  1. /**//// <summary>
  2. /// 使控制項獲得焦點
  3. /// </summary>
  4. /// <param name=&quot;str_Ctl_Name&quot;>獲得焦點控制項Id值,比如:txt_Name</param>
  5. /// <param name=&quot;page&quot;>Page類</param>
  6. public void GetFocus(string str_Ctl_Name,Page page)
  7. {
  8. page.RegisterStartupScript(&quot;&quot;,&quot;<script>document.forms(0).&quot;+str_Ctl_Name+&quot;.focus(); document.forms(0).&quot;+str_Ctl_Name+&quot;.select();</script>&quot;);
  9. }

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 安裝ubuntu後,出現無法識別顯示器,從而造成無法設置高解析度。 界面顯示似老年機般,5.3的視力+強迫症,臣妾的內心是十分拒絕的,搗鼓了半天終於搞定,這裡記錄下方法。 (一)使用xrandr命令,查看當前顯示器顯示配置 lilip@lilip:~$ xrandr Screen 0: minimu ...
  • 回車 代碼:CR ASCII碼:\ r ,十六進位,0x0d,回車的作用只是移動游標至該行的起始位置; 換行 代碼:LF ASCII碼:\ n ,十六進位,0x0a,換行至下一行行首起始位置; ...
  • vim /etc/init.d/nginx 1 #!/bin/bash 2 # nginx Startup script for the Nginx HTTP Server 3 # it is v.0.0.2 version. 4 # chkconfig: 2345 30 30 5 # descri ...
  • 在Nginx的插件模塊中有一個模塊stub_status可以監控Nginx的一些狀態信息,預設安裝可能沒有這個模塊,手動編譯的時候加一下即可。 1. 模塊安裝 先使用命令查看是否已經安裝這個模塊: 如果已經安裝,會在顯示的信息中包含 --with-http_stub_status_module信息。 ...
  • 51 Windows 無法找到網路路徑。請確認網路路徑正確並且目標電腦不忙或已關閉。如果 Windows 仍然無法找到網路路徑,請與網路管理員聯繫。 52 由於網路上有重名,沒有連接。請到“控制面板”中的“系統”更改電腦名,然後重試。 53 找不到網路路徑。 54 網路很忙。 55 指定的網路資 ...
  • ID 類型 來 源 代 表 的 意 義 舉 例 解 釋 ...
  • 一、進程/線程 進程:系統進行資源分配和調度的一個獨立單位。(存資源) 線程:CPU調度和分派的基本單位。(執行) 一個進程可以有多個線程,一個線程可與同屬一個進程的其他線程共用進程所擁有的全部資源。 場景:超市。 /// <summary> /// 單線程 /// </summary> /// < ...
  • 大家在用三層架構做開發的時候,是否有使用介面,使用介面的時候是否有類似這樣的代碼: 然後每個每個表都有一個這樣的介面代碼,對比之後發現,這樣的代碼是不是很多重覆呢?那麼有什麼好的辦法可以減少這樣的重覆代碼??? 我想到的是泛型,介面同樣可以泛型,看下麵這張圖,IT_admin,IT_advs,IT_ ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...