摘要: ScenarioThere are two pages: page1 and page2. In the page one, there are only a select and submit button, we want to transfer the select value to page two.solution:Query string, in the page1.aspx.cs,coding submit button click event, as below: void btnSubmit_Click(object sender, EventArgs e) { Respon 阅读全文
posted @ 2012-03-06 12:11 逆天寒 阅读(183) 评论(0) 推荐(0) 编辑
摘要: CLR 中文翻译是公共语言运行时。看了Jeffrey的大作<CLR Via C#>,越来越对它感兴趣。考虑一下我们平时的开发情况,大体步骤如下:安装所需要visual studio 2005/2008/2010, 随着安装过程.Net Framework也随之安装到机器中写任意一种程序F5 编译启动在第三步骤中编译为MSIL生成 一个DLL或是EXE, 这2种是Window可移植程序,换句话说在非window系统中是不能启动的Window启动DLL或是EXE, a) 程序进程启动 b) window在进程的地址空间中加载MSCorEE.dll的对应版本 c) MSCorEE.dll 阅读全文
posted @ 2012-03-06 12:11 逆天寒 阅读(167) 评论(0) 推荐(0) 编辑