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

来源:互联网 发布:iphone事件提醒软件 编辑:程序博客网 时间:2024/05/17 22:26

 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;        }
原创粉丝点击