向書本學(xué)習(xí),還要向?qū)嵺`學(xué)習(xí)、向生活學(xué)習(xí)。消化已有知識,
而且要力求有所發(fā)現(xiàn)、有所發(fā)明、有所創(chuàng)造
2019/4/5 9:28:35
不使用頁面緩存:
你可以在不想被緩存的頁面Page_Load事件中加上如下代碼
復(fù)制代碼 代碼如下:
Response.Expires = 0;
Response.Buffer = true;
Response.ExpiresAbsolute = DateTime.Now.AddSeconds(-1);
Response.AddHeader("pragma", "no-cache");
Response.CacheControl = "no-cache";
編譯成DLL:
“開始”—“運(yùn)行”—“cmd” ,用下面的兩條命令編譯AuthCode.cs文件為.DLL文件。(AuthCode.cs文件保存在“C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727”目錄下)命令如下:
cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
csc /target:library AuthCode.cs
GridView導(dǎo)出到Excel代碼2:
復(fù)制代碼 代碼如下:
public override void VerifyRenderingInServerForm(Control control)
{
//(必須有)
//base.VerifyRenderingInServerForm(control);
}
public void Generate(string Typename, string scswId, GridView TempGrid)
{
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.Charset = "utf-8";
string Filename = Typename + scswId + ".xls";
HttpContext.Current.Response.AppendHeader("Content-Disposition", "online;filename=" + Filename);
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
HttpContext.Current.Response.ContentType = "application/ms-excel";
System.IO.StringWriter oStringWriter = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
TempGrid.RenderControl(oHtmlTextWriter);
HttpContext.Current.Response.Write(oStringWriter.ToString());
HttpContext.Current.Response.End();
}
提示并跳轉(zhuǎn):
復(fù)制代碼 代碼如下:
ScriptManager.RegisterStartupScript(this.Page, GetType(),
"askAndRederect", "alert('請先登錄!');window.location.href='Index.aspx';", true);
GridView中刪除某一行前詢問:
復(fù)制代碼 代碼如下:
((LinkButton)e.Row.Cells[4].Controls[2]).Attributes.Add("onclick", "javascript:return confirm('您確認(rèn)要刪除嗎?')");
GridView隔行變色代碼:
復(fù)制代碼 代碼如下:
protected void GVLinkman_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#00A9FF'");
//當(dāng)鼠標(biāo)移開時還原背景色
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
}
}
asp.net 正則表達(dá)式:
復(fù)制代碼 代碼如下:
//驗證手機(jī)號
Regex r = new Regex(@"^(13|15|18)\d{9}$");
return r.IsMatch(mobilePhone);
//帶86或者+86的手機(jī)號
Regex regexMobile = new Regex(@"^((\+86)|(86))?(13|15|18)\d{9}$");
//驗證是否為中文
Regex regex = new Regex("^[一-龥]+$");
//Decimal(8,4)類型小數(shù)的驗證
Regex rx = new Regex(@"^-?(?:[1-9][0-9]{0,3}|0)(?:\.[0-9]{1,4})?$");
//驗證輸入是否為數(shù)字和字母的組合
regex = new Regex("^[一-龥_a-zA-Z0-9]+$");
//驗證輸入是否全為數(shù)字
regex = new Regex("^[0-9]+$");
//驗證輸入是否全為中文
regex = new Regex("^[一-龥]+$");
//電子郵件
regex=new Regex(@"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$");
//驗證網(wǎng)址
regex = new Regex(@"http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?");
//電話號碼
regex = new Regex(@"(\d{3})?\d{8}|(\d{4})(\d{7})");
將Button關(guān)聯(lián)上回車鍵的JS方法:
在網(wǎng)頁中設(shè)置回車鍵的解決方法是使用javascript的document.onkeydown()方法捕捉鍵盤點(diǎn)擊事件,使用event.keyCode來獲取用戶點(diǎn)擊的鍵位。
復(fù)制代碼 代碼如下:
function document.onkeydown()
{
if(event.keyCode == 13)
{
button.click();//點(diǎn)擊回車鍵調(diào)用button的點(diǎn)擊事件
event.returnValue = false;//取消回車鍵的默認(rèn)操作
}
}
如果button按鈕為服務(wù)器端的按鈕源碼天空,則更改如下
復(fù)制代碼 代碼如下:
function document.onkeydown()
{
//使用document.getElementById獲取到按鈕對象
var button = document.getElementById('<=serverButton.ClientID%>');
if(event.keyCode == 13)
{
button.click();
event.returnValue = false;
}
}
如果按鈕在用戶控件中,上面的方法可以放在用戶控件中使用。
一定要取消回車鍵的默認(rèn)操作,否則默認(rèn)的按鈕還會在執(zhí)行了button按鈕后繼續(xù)執(zhí)行。
深圳市南山區(qū)南山街道南海大道西桂廟路北陽光華藝大廈1棟4F、4G-04
咨詢電話:136 8237 6272
大客戶咨詢:139 0290 5075
業(yè)務(wù)QQ:195006118
技術(shù)QQ:179981967