protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes.Add(“onmouseover… more →
Application Developmentmeetme wrote 1 year ago: protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row. … more →
meetme wrote 1 year ago: public static class ScottGuExtensions { public static bool IsValidEmailAddress(this string s) … more →
meetme wrote 1 year ago: 序列化问题 [Serializable] public class FatherClass { private string id; public … more →
meetme wrote 1 year ago: 1. 收藏夹路径 System.Environment.GetFolderPath(System.Environment.SpecialFolder.Favorites) 2. 桌面路径 System … more →
meetme wrote 1 year ago: // Store integer 182 int decValue = 182; // Convert integer 182 as a hex in a string variable string … more →
meetme wrote 1 year ago: 通过.Net FrameWork 2.0下提供的“System.Net.Mail”可以轻松的实现 通过.Net FrameWork 2.0下提供的“System.Net.Mail”可以轻松的实现,本 … more →
meetme wrote 2 years ago: 方法如下: Protected Overrides Function ProcessCmdKey(ByRef aoMsg As Message, ByVal aoKey As Keys) As Boo … more →
meetme wrote 2 years ago: http://topic.csdn.net/t/20060104/22/4498631.html Public Class Form1 Inherits Syste … more →
meetme wrote 2 years ago: dataGridView1[e.ColumnIndex, e.RowIndex].EditedFormattedValue.ToString() … more →
meetme wrote 2 years ago: http://www.cnblogs.com/michaelhuwei/archive/2007/06/05/771954.html [源码]用c#创建支持多语言的应用程序 点击下载源代码 互联网无国 … more →
meetme wrote 2 years ago: C#中的文件操作微软的.Net框架为我们提供了基于流的I/O操作方式,这样就大大简化了开发者的工作。因为我们可以对一系列的通用对象进行操作,而不必关心该I/O操作是和本机的文件有关还是和网络中的数据有 … more →
meetme wrote 2 years ago: 有时候我们要对时间进行转换,达到不同的显示效果 默认格式为:2005-6-6 14:33:34 如果要换成成200506,06-2005,2005-6-6或更多的该怎么办呢 我们要用到 ateT … more →
meetme wrote 2 years ago: by miqier 误区: 近几天来搜索网上资源介绍理论上的可选编码方案为:gb2312/gbk/utf8等支持双字节的编码类型均可,实际试验过程中发现并不是这样的。 A、大家跟风都想使用u … more →
meetme wrote 2 years ago: http://www.cnblogs.com/BearsTaR/archive/2006/05/26/409702.aspx Dotfuscator Professional Edition V4.0 … more →
meetme wrote 2 years ago: http://www.jb51.net/html/200707/85/10532.htm 首先要做的找到dotfuscator.exe: D:\Microsoft Visual Studio .NET … more →
meetme wrote 2 years ago: 也就是說記錄不是真正被刪除,而是被打上DataRowState.Deleted標記,我想把它真正刪除 ______________________ 一个DataRow对象刚被创建之后其 … more →
meetme wrote 2 years ago: http://msdn2.microsoft.com/en-us/library/system.windows.forms.datagridview.columnheadersdefaultcells … more →