Loading

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 39 下一页
摘要: 正则表达式是简明而灵活的表示法,用于查找和替换各种模式的文本。在 SQL Server Management Studio 的“查找和替换”对话框中的“查找内容”字段中,可以使用一组特定的正则表达式。使用正则表达式进行查找若要在“快速查找”、“在文件中查找”、“快速替换”或“在文件中替换”操作过程中,在“查找内容”字段启用正则表达式,请在“查找选项”下选中“使用”,再选择“正则表达式”。“查找内容”字段旁边的“引用列表”三角形按钮将变为可用状态。单击此按钮可显示一组最常用的正则表达式。如果选择了表达式生成器中的某个项,则可将该项插入“查找内容”字符串。注意“查找内容”字符串中使用的正则表达式与 阅读全文
posted @ 2013-04-05 14:48 .net's 阅读(4948) 评论(0) 推荐(0)
摘要: 当使用陌生的api接口时,请认真阅读api接口文档,以避免不必要的走弯路,错路。 阅读全文
posted @ 2013-03-13 15:08 .net's 阅读(326) 评论(0) 推荐(0)
摘要: .NET Framework 提供了两种访问某类型的元数据的方式:通过 System.Reflection 命名空间中提供的反射 API,以及通过 TypeDescriptor 类。反射是可用于所有类型的通用机制,因为它是基于根 Object 类的 GetType 方法建立的。反射为某个类型返回的信息不可扩展,因为编译了目标类型后就不能对其进行修改。有关更多信息,请参见 反射 中的主题。 ... 阅读全文
posted @ 2013-03-10 11:18 .net's 阅读(452) 评论(1) 推荐(1)
摘要: developers to pay attention to URLs and provides the following guidelines for high-quality URLs.You should provide:A domain name that is easy to remember and easy to spellShort URLsEasy-to-type URLsURLs that refl ect the site structureURLs that are hackable to allow users to move to higher levels of 阅读全文
posted @ 2013-03-09 10:34 .net's 阅读(568) 评论(0) 推荐(0)
摘要: 1, 在web属性中,点击创建“Create Virtual Directory”.2, 在IIS中将显示创建好的虚拟目录注意:如果虚拟目录层数大于1,则需要在C:\inetpub\wwwroot中手动创建对应的子目录。 阅读全文
posted @ 2013-02-21 16:47 .net's 阅读(747) 评论(0) 推荐(0)
摘要: change Identity with LocalSystemthan you can connection string as the following in web.config:<add name="conn" connectionString="Data Source=.;Initial Catalog=dbname;Integrated Security=True" providerName="System.Data.SqlClient" /> 阅读全文
posted @ 2013-02-21 16:21 .net's 阅读(400) 评论(0) 推荐(0)
摘要: After a bit of hiatus, I am long overdue to get some code up on this blog. To give myself some direction, this is the start of an informal series that will attempt to shed some light on the functional programming ideas that have been sneaking into the C# world. I've got a lot that I want to writ 阅读全文
posted @ 2013-02-19 20:19 .net's 阅读(730) 评论(0) 推荐(0)
摘要: 1,元素命名:应该根据“它们是什么”来为元素命名,而不应该根据“它们的外观如何”来命名。2,Box modelPadding is applied around the content area. If you add a background to an element, it will be applied to the area formed by the content and padding.In CSS, width and height refer to the width and height of the conte... 阅读全文
posted @ 2013-02-18 15:16 .net's 阅读(322) 评论(0) 推荐(0)
摘要: When you set any of the font properties, the values flow through to nested objects. For example, if you set the FontFamily property for the top-level window, every control in that window gets the same FontFamily value (unless the control explicitly sets a different font). This works because the font 阅读全文
posted @ 2013-02-16 21:40 .net's 阅读(331) 评论(0) 推荐(0)
摘要: 指示调试器逐句通过代码,而不是进入并单步执行代码。此类不能被继承。(MSND)解释:当进行调试的时候,当类、结构、构造器及方法(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Constructor|AttributeTargets.Method)使用该attribute装饰后,单步调试不会进入以上所列的代码体内。作用:当调试时,不希望进入某个方法体内单步执行代码时,此attribute非常有用,可以提高调试代码的效率。 阅读全文
posted @ 2012-12-29 21:27 .net's 阅读(1524) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 39 下一页