新闻发布系统中的代码记录2

 1、GridView生成的HTML代码,原文来自(http://niunan.iteye.com/blog/285549

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" CssClass="tablecss"> 
        <Columns> 
            <asp:TemplateField HeaderText="编号" HeaderStyle-CssClass="aaa" ItemStyle-CssClass="bbb"> 
                <ItemTemplate> 
                    <%#Eval("id") %> 
                </ItemTemplate> 
            </asp:TemplateField> 
            <asp:TemplateField HeaderText="姓名" HeaderStyle-CssClass="aaa" ItemStyle-CssClass="bbb"> 
                <ItemTemplate> 
                    <%#Eval("name") %> 
                </ItemTemplate> 
            </asp:TemplateField> 
        </Columns> 
    </asp:GridView> 
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓  
   <div> 
        <table class="tablecss" cellspacing="0" rules="all" border="1" id="Table1" style="border-collapse: collapse;"> 
            <tr> 
                <th class="aaa" scope="col">编号</th> 
                <th class="aaa" scope="col">姓名</th> 
            </tr> 
            <tr> 
                <td class="bbb">1</td> 
                <td class="bbb">张三</td> 
            </tr> 
            <tr> 
                <td class="bbb">2</td> 
                <td class="bbb">李四</td> 
            </tr> 
        </table> 
    </div> 

2、.NET中获取字符串的MD5码,原文来自(http://niunan.iteye.com/blog/261313

1)、导入命名空间(C#):

using System.Web.Security;

2)、获取MD5码(C#):

string Password = FormsAuthentication.HashPasswordForStoringInConfigFile(TextBox1.Text.ToString(), "MD5");

3、.net截取指定长度汉字超出部分显示“...”

       ///   <summary> 
       ///   将指定字符串按指定长度进行剪切, 
        ///   </summary> 
       ///   <param   name= "oldStr "> 需要截断的字符串 </param> 
       ///   <param   name= "maxLength "> 字符串的最大长度 </param> 
       ///   <param   name= "endWith "> 超过长度的后缀 </param> 
       ///   <returns> 如果超过长度,返回截断后的新字符串加上后缀,否则,返回原字符串 </returns> 
       public static string StringTruncat(string oldStr, int maxLength, string endWith) 
       { 
           if (string.IsNullOrEmpty(oldStr)) 
               //   throw   new   NullReferenceException( "原字符串不能为空 "); 
               return oldStr + endWith; 
           if (maxLength < 1) 
               throw new Exception("返回的字符串长度必须大于[0] "); 
           if (oldStr.Length > maxLength) 
           { 
               string strTmp = oldStr.Substring(0, maxLength); 
               if (string.IsNullOrEmpty(endWith)) 
                   return strTmp; 
               else 
                   return strTmp + endWith; 
           } 
           return oldStr; 
       }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值