注意:这是本人开发时候一些随笔总结,用于帮助在开发中快速查阅词典,希望对大家有帮助
- 如果想在Repeater的行事件中提取自己的方法,首先Repeter的行绑定事件中写自己的方法,OnItemCommand=”Re_ItemComman”
然后在行中绑定操作编号如labe控件,添加属性CommandName、
CommandArgument,前者是名称后者是变量值。后台的写法是
protected void Rp_MyCourseDate_ItemCommand(object source, RepeaterCommandEventArgs e) {
if((e.CommandName=="PicLoad")&&(e.CommandArgument.ToString().Trim() != ""))
{
对应值:e.CommandArgument.ToString()
}
}
2、撒实现多语言可以通过生成本地资源来做,.Net自带多语言转换为对应的多语言资源库。获取本地多语言代码为System.Threading.Thread.CurrentThread.CurrentCulture.Name.ToString(),
将多语言设置为
System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture(“en-US”);
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(cultureName);
3、CurrentCulture和CurrentUICulture的区别
1.CurrentCulture:這個Property是用來定義使用者要使用的"地區選項"、標準及格式等等的資料。
2.CurrentUICulture:顧名思義,這個Property是用在定義使用者登入系統的時候所使用的語言,例如在MUI(Multi-language User Interface)中,您可以定義您看到桌面上顯現給您的語言。
意思就是說,您登入XP桌面後,介面可以是英文的(urrentUICulture),但是您的數字以及日期的顯示方式以及您的位置可以選"台灣"(CurrentCulture)。
使用Windows控制面板中的“区域和语言”选项,用户就可以改变CurrentCulture的默认设置。使用这个配置,还可以改变文化的默认数字、时间和日期格式。CurrentUICulture不依赖于这个配置,而依赖于操作系统的语言。
对于许多大型的项目,会产生编程动态改变当前应用程序的文化的需求:
4、下载代码总结:
FileStream fs = new System.IO.FileStream(mStrFileRoot, System.IO.FileMode.Open);
byte[] bytes = new byte[(int)fs.Length];
fs.Read(bytes, 0, bytes.Length);
fs.Close();
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(mStrFileName.Substring(mStrFileName.LastIndexOf('/') + 1), System.Text.Encoding.UTF8));
Response.BinaryWrite(bytes);
Response.Flush();
Response.End();
注意:其中mStrFileRoot是指相对路径信息,如果要想获取别的服务器上的路径,那么应该去掉http://就可以。如果http://Project /a.jpg应该替换为//Project/a.jpg
5、Server.UrlEncode()是解决中文乱码的,而ASP对应也有相应的此方法,但二者是有区别的,ASP.net 中的 Server.UrlEncode 默认是按照 UTF-8 编码方式进行处理的。而ASP中是按照本地设置编码方式进行处理的。
6、如何做记住当前登录:提示,首先肯定是当前用户名和密码记录在当前Session获取Cookies中。如果当前用户在登录时候选择记住密码,那么将用户信息保存到session并添加到cookies中,
两个缓存对象位于System.web底下。实现代码如下:
HttpCookie cookie=new HttpCookie(“Users”);
cookie.Value[“name”]=”yang”;
cookie.value[“pwd”]=”zhao”;
Response.ApendCookie(aCookie);
在取出对象时候如下代码,
If(Session[“User”]==null)
Request.Cookies[“Users”][“name”].ToString();
7. 服务器空间添加属性 clientidmode="Static" 那么在JS获取的时候当前标签对应ID不变。