posted @ 2010-12-07 12:37
CsharpHome
阅读(116)
推荐(0)
摘要:
protected void Button1_Click(object sender, EventArgs e) { string connString =@"server=localhost\SQLEXPRESS;database=FSYCurtainSalesMISDB;uid=sa;pwd=123"; SqlConnectio...
阅读全文
posted @ 2010-12-03 09:08
CsharpHome
阅读(178)
推荐(0)
摘要:
红色 蓝色 protected void DropDownList1_SelectedInde...
阅读全文
posted @ 2010-12-01 10:08
CsharpHome
阅读(142)
推荐(0)
posted @ 2010-11-30 20:47
CsharpHome
阅读(155)
推荐(0)
摘要:
public class People { private string name; private int age; public People() { } public string Name { get { return name; } set { name = value; } } public in...
阅读全文
posted @ 2010-11-30 09:05
CsharpHome
阅读(176)
推荐(0)
摘要:
protected void Button1_Click(object sender, EventArgs e) { Response.Cookies["UserName"].Value = TextBox1.Text; Response.Cookies["UserName"].Expires = DateTime.Now.AddHours(1); HttpCookie mycookie = ne...
阅读全文
posted @ 2010-11-30 08:51
CsharpHome
阅读(232)
推荐(0)
摘要:
StudentSheet.cssstudent {font-size:medium;display:block}name {font-size:larger;color:Maroon}gender {font-size:larger;color:Lime}age {font-size;color:Maroon} zhongyuan boy 20
阅读全文
posted @ 2010-11-29 20:33
CsharpHome
阅读(148)
推荐(0)
posted @ 2010-11-27 17:53
CsharpHome
阅读(151)
推荐(0)
摘要:
http://www.cnblogs.com/ubosm/archive/2010/11/02/1867409.html
阅读全文
posted @ 2010-11-08 10:26
CsharpHome
阅读(139)
推荐(0)
摘要:
1 创建用于反射使用的DLL新建一个C#类库项目,拷贝源代码如下,编译生成DLL(假如DLL的文件名是TestReflect.dll)1usingSystem;23namespaceWebtest4{5/**////<summary>6///ReflectTest的摘要说明。7///</summary>8publicclassReflectTest9{10publicRef...
阅读全文
posted @ 2010-11-08 09:39
CsharpHome
阅读(216)
推荐(0)