asp.net中自动填充参数的存储过程类(C#)
执行一下这个sql:SELECT B.[name], C.[name] AS [type], B.length, B.isoutparam, B.isnullableFROM sysobjects AS A INNER JOIN";syscolumns AS B ON A.id = B.id AND A.xtype = 'P' AND A.name = '你的存储过程名' INNER JO …… 阅读全文
执行一下这个sql:SELECT B.[name], C.[name] AS [type], B.length, B.isoutparam, B.isnullableFROM sysobjects AS A INNER JOIN";syscolumns AS B ON A.id = B.id AND A.xtype = 'P' AND A.name = '你的存储过程名' INNER JO …… 阅读全文
GridView排序 <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4" ForeColor="#3 …… 阅读全文
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333" GridLines="None" ShowFooter="True" onrowdatabound="GridView1_RowDataBound" …… 阅读全文
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data;using System.Web.UI;using System.Web.UI.WebControls;public partial class DataTableDem …… 阅读全文
仿google、百度搜索框输入信息智能提示的实现 兼容主流浏览器 body { font: 11px arial; } .suggest_link { width:120px; background-color: #FF …… 阅读全文
The Chi-lites Soul A lonely man 1972 Babyface R&B unknown Babyface R&B The essential babyface 2001 Babyface R& …… 阅读全文
protected void txtFILESAVEFEE_TextChanged(object sender, EventArgs e) { TextBox t = (TextBox)sender; int Index = ((GridViewRow)(t.NamingContainer)).RowIndex;//获得行号 Grid …… 阅读全文
Compute函数的参数就两个:Expression,和Filter。Expresstion是计算表达式,关于Expression的详细内容请看这里“http://msdn2.microsoft.com/zh-cn/library/system.data.datacolumn.expression(VS.80).aspx”。而Filter则是条件过滤器,类似sql的Where条件。 …… 阅读全文