<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆-1  評論-0  文章-0  trackbacks-0
      2012年2月24日

    1.為按鈕添加確認對話框

    Button.Attributes.Add("onclick","return confirm('確認?')");

    Button.Attributes.Add("onclick","if(confirm('確定?')){return true;}else{return false;}")

     

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

    <asp:HyperLinkColumn Target="_blank" headertext="ID" DataTextField="id" NavigateUrl="aaa.aspx?id='<%# DataBinder.Eval(Container.DataItem, "數據字段1")%>'&name='<%# DataBinder.Eval(Container.DataItem, "數據字段2")%>'/>

     

    3.表格點擊改變顏色

    if (e.Item.ItemType == ListItemType.Item ||e.Item.ItemType == ListItemType.AlternatingItem)

    {

     

    e.Item.Attributes.Add("onclick","this.style.backgroundColor='#99cc00';this.style.color='buttontext';this.style.cursor='default';");

    }

     

    4.清空Cookie

    Cookie.Expires=[DateTime];

    Response.Cookies("UserName").Expires = 0;

     

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

    <asp:panel style="overflow-x:scroll;overflow-y:auto;"></asp:panel>

     

    6.數字格式化

    <%#Container.DataItem("price")%> 結果:500.0000格式化:500.00

    <%#Container.DataItem("price","{0:#,##0.00}")%>

    int i=123456;

    string s=i.ToString("###,###.00");

     

    7.日期格式化

    <%# DataBinder.Eval(Container.DataItem,"Date")%> 結果:2004-8-11 19:44:28 格式化:2004-8-11

    <%# DataBinder.Eval(Container.DataItem,"Date","{0:yyyy-M-d}")%>

     

    8.時間格式化

    string aa=DateTime.Now.ToString("yyyyMMdd");

    當前年月日時分秒 currentTime=System.DateTime.Now;

    當前年 int = DateTime.Now.Year;

    當前毫秒 int 毫秒= DateTime.Now.Millisecond;

     

    9.自定義分頁代碼

    public static int pageCount; //總頁面數

    public static int curPageIndex=1; //當前頁面   

    if(ccDataGrid.CurrentPageIndex<(ccDataGrid.PageCount - 1))

    {//下一頁

      ccDataGrid.CurrentPageIndex += 1;

      curPageIndex+=1;

    }

    bind(); // ccDataGrid數據綁定函數

    if(ccDataGrid.CurrentPageIndex>0)

    { //上一頁

      ccDataGrid.CurrentPageIndex += 1;

      curPageIndex-=1;

    }

    bind(); // ccDataGrid數據綁定函數

    int a=int.Parse(JumpPage.Value.Trim());//JumpPage.Value.Trim()為跳轉值

    if(a<DataGrid1.PageCount)

    { //直接頁面跳轉

      this.ccDataGrid.CurrentPageIndex=a;

    }

    bind(); // ccDataGrid數據綁定函數

     

    10.變量.ToString()

    字符型轉換 轉為字符串

    12345.ToString("n"); //生成 12,345.00

    12345.ToString("C"); //生成 12,345.00

    12345.ToString("e"); //生成 1.234500e+004

    12345.ToString("f4"); //生成 12345.0000

    12345.ToString("x"); //生成 3039 (16進制)

    12345.ToString("p"); //生成 1,234,500.00%

     

    11.客戶端驗證控件

    //驗證空值

    <asp:requiredfieldvalidator id="valUsername" runat="server" controltovalidate="txtUsername" display="None" errormessage="請輸入用戶名 !!"></asp:requiredfieldvalidator>

    //驗證網址

    <asp:regularexpressionvalidator id="rev" runat="server" ErrorMessage="公司網址不合法[要有http://] " Display="None" ControlToValidate="txtCPWebsite" ValidationExpression="http://([\w-]+\.)+[\w-]+(/[\w- ./?%&amp;=]*)?"></asp:regularexpressionvalidator>

    //驗證郵箱

    <asp:RequiredFieldValidator id="rfv" runat="server" ControlToValidate="txtCPEmail" Display="None" ErrorMessage="請輸入電子郵箱 !!"></asp:RequiredFieldValidator>

    //驗證郵編

    <asp:regularexpressionvalidator id="rev5" runat="server" ErrorMessage="郵政編碼不合法 " Display="None" ControlToValidate="txtCPPostCode" ValidationExpression="\d{6}"></asp:regularexpressionvalidator>

    //顯示錯誤信息

    <asp:validationsummary id="vs" runat="server" ShowSummary="False" ShowMessageBox="True"></asp:validationsummary>

     

    12.DataBinding綁定表達式

    以該oil paintings網站案例來說,它的產品頁面都調用了DataBinding綁定表達式

    1) 普通的綁定表達式

    <%# DataBinder.Eval(Container.DataItem, "ContactName") %>

    2) 文本+綁定表達式

    <asp:Label id=lblDate runat="server" Text='<%# "[" + DataBinder.Eval(Container, "DataItem.NewsCreatedate") + "]" %>' ForeColor="Red"></asp:Label>

    3) 同時帶有顯示格式的綁定表達式

    <%# DataBinder.Eval(Container,"DataItem.USActiveDate","{0:yyyy-MM-dd}") %>

    4) 結合綁定表達式和模態框

    <A href='<%# ShowModalWin(Convert.ToString(DataBinder.Eval(Container.DataItem, "PictureImage")),Convert.ToString(DataBinder.Eval(Container.DataItem, "DetailID")),Convert.ToString(DataBinder.Eval(Container.DataItem, "PictureID")))%>'>

    其中:后臺代碼文件中ShowModalWin()方法的定義如下:

    protected string ShowModalWin(string PictureImage,string DetailID,string PictureID)

    {

    return " window.showModalDialog(\"Customers/ShowPictureInfo.aspx?pid="+PictureImage+"&did="+DetailID+"&id="+PictureID+"\",\"\",\"dialogHeight:320px;dialogWidth:480px;center:yes;help:no;status:no;scroll:no\");";

    }

    或者將參數提取出來單獨定義成一變量:

    const string WINDOWPARAMSTRING="dialogWidth:540px;dialogHeight:420px;help:0;status:0;resizeable:1;scroll:no";

    Page.RegisterStartupScript("functionscript","<script language='javascript'>window.showModalDialog('EditUserService.aspx?URID="+iURID+"','','"+WINDOWPARAMSTRING+"')</script>");

     

    13.html字符轉換的兩個函數

    public string Encode(string str)

    {

    str=str.Replace("&","&amp;");

    str=str.Replace("'","''");

    str=str.Replace("\"","&quot;");

    str=str.Replace(" ","&nbsp;");

    str=str.Replace("<","&lt;");

    str=str.Replace(">","&gt;");

    str=str.Replace("\n","<br>");

    return str;

    }

    public string Decode(string str)

    {

    str=str.Replace("\n","<br>");

    str=str.Replace("&gt;",">");

    str=str.Replace("&lt;","<");

    str=str.Replace("&nbsp;"," ");

    str=str.Replace("&quot;","\"");

    return str;

    }

    posted @ 2012-02-24 20:57 mad fans| 編輯 收藏
    主站蜘蛛池模板: 嘿嘿嘿视频免费网站在线观看| 9久热精品免费观看视频| 日韩成人免费在线| sihu国产精品永久免费| 少妇中文字幕乱码亚洲影视| 成年女人喷潮毛片免费播放| 国产高清视频免费在线观看| 亚洲国产精品一区二区久| 亚洲精品一级无码中文字幕| 免费成人福利视频| 深夜免费在线视频| 亚洲成a人片在线观看精品| 国产精品亚洲mnbav网站 | 精品国产亚洲一区二区三区 | 国产成人精品日本亚洲11| 日韩精品成人亚洲专区| 久久综合九色综合97免费下载| 亚洲综合国产成人丁香五月激情| 亚洲综合色区在线观看| 性感美女视频免费网站午夜 | 亚洲精品无码av天堂| 嫖丰满老熟妇AAAA片免费看| 国产午夜精品理论片免费观看 | 深夜久久AAAAA级毛片免费看| 亚洲中文久久精品无码1 | 久久亚洲日韩看片无码| 国产亚洲成人久久| 日韩一级免费视频| www.免费在线观看| 男女午夜24式免费视频| 特a级免费高清黄色片| 在线观看亚洲AV日韩AV| 亚洲综合激情九月婷婷 | 特级毛片免费播放| 亚洲日产乱码一二三区别| 亚洲精品一卡2卡3卡三卡四卡| 亚洲精品国产精品乱码视色| 亚洲黄片手机免费观看| 国产yw855.c免费视频| 午夜影视在线免费观看| 97免费人妻无码视频|