摘要:
create function GetParentID (@ID int)returns intasBeginDeclare @pid intset @pid =0select @pid = classparentid from uds_class where classid = @idreturn... 阅读全文
摘要:
public class FileRight:IDisposable{private SqlDataAdapter dsCommand;public SqlConnection mySqlConnection;public static string CONN;public FileRight(){... 阅读全文
摘要:
//In InitializeComponent this.Error += new System.EventHandler (this.Page_Error ); // ... 阅读全文
摘要:
HTML 页面. " HeaderText="删除" CommandName="delete"> CS 页面. public void dgdFolder_delete(object Sender , DataGridCommandEventArgs E){......} 阅读全文
摘要:
问:现在想把 Text=''> 有近1000字,现在想让他显示20个 然后能点击链接转到 listnewsinfo.aspx上,转向能实现,就是 怎么仅仅显示20个呢?解决方法: namespace.class.method(Eval("Content").ToString(), 20) 阅读全文
摘要:
Phrase="洪恩在线 求知无限"Balises="" Taille=40;Midx=100; Decal=0.5; Nb=Phrase.length; 声明一些变量,并赋初值。 ... 阅读全文
摘要:
onClick="history.back(-1)" 阅读全文
摘要:
CREATE PROCEDURE GetEmpName@EmpId int,@Kind varchar(10)AS Declare @SQL nVarchar(100) Set @SQL='Select '+@Kind+' from mrBaseInf where EmpId ='+Cast( @... 阅读全文
摘要:
using 关键字有两个主要用途: using 指令创建命名空间的别名或导入在其他命名空间中定义的类型。 using 指令有两个用途: 创建命名空间的别名(using 别名)。 允许在命名空间中使用类型,例如,不必限定该命名空间中的类型使用(using 指令)。 using [al... 阅读全文
摘要:
string s;s = air .ToString();s = Enum.GetName(typeof(Aircraft), air.Beech);后者比前者性能高. 阅读全文