摘要:
第一步,Model建立Ado.net实体模型。 第二部,Controller建立增删查改方法 public static HttpResponseMessage toJson(Object obj) { String str; if (obj is String || obj is Char) { 阅读全文
摘要:
首先添加引用AspNetpager.dll(将.dll文件放在bin中进行引用) 接着添加<%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer" %> aspx: <webdiyer:Asp 阅读全文
摘要:
方法一:两个for循环 aspx.cs private string id=""; protected void btn_del_Click(object sender, EventArgs e) { for (int i = 0; i < typeList.Items.Count; i++) { 阅读全文
摘要:
protected void btn_execl_Click(object sender, EventArgs e) { Response.Clear(); Response.Buffer = true; Response.AppendHeader("Content-Disposition", "a 阅读全文
摘要:
SQL Server 中截取字符串常用的函数: 1.LEFT ( character_expression , integer_expression ) 函数说明:LEFT ( '源字符串' , '要截取最左边的字符数' ) 返回从字符串左边开始指定个数的字符 select LEFT('SQL_Server_2008',4 ); 返回结果:SQL_ ... 阅读全文
摘要:
原文链接 http://www.cnblogs.com/luqingsong/archive/2011/02/16/1956458.html string str="123abc456";int i=3;1 取字符串的前i个字符 str=str.Substring(0,i); // or str=s 阅读全文
摘要:
后台: 补充:前台行号:<%#Container.ItemIndex %>后台行号:int index = e.Item.ItemIndex;(在Repeater1_ItemDataBound事件中) 数据源绑定控件的Row/ItemDataBound事件 http://blog.csdn.net/ 阅读全文
摘要:
http://www.cnblogs.com/weihengblogs/p/3436044.html 阅读全文
摘要:
使用方式: // 获得查询结果DataTable dt = DbHelper.ExecuteDataTable(...);// 把DataTable转换为IList<UserInfo>IList<UserInfo> users = ModelConvertHelper<UserInfo>.Conve 阅读全文
摘要:
...... <pages> <namespaces> <add namespace="System" /> <add namespace="System.Collections" /> <add namespace="System.Collections.Specialized" /> <add 阅读全文
摘要:
一、css方式(随内容的变化自适应高度,加载时告诉不固定。)) <style> .test_box { width: 100px; _height: 20px; margin-left: auto; margin-right: auto; padding: 3px; outline: 0; bord 阅读全文
摘要:
jquery代码: <script> $(document).ready(function () { //$(".megamenu").megamenu(); $(".skyblue li a").each(function () { if ($($(this))[0].href == String 阅读全文