惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Secure Thoughts
Security Latest
Security Latest
Simon Willison's Weblog
Simon Willison's Weblog
O
OpenAI News
GbyAI
GbyAI
L
LINUX DO - 最新话题
A
Arctic Wolf
T
Tor Project blog
G
GRAHAM CLULEY
I
InfoQ
博客园_首页
IT之家
IT之家
The Register - Security
The Register - Security
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
K
Kaspersky official blog
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
U
Unit 42
PCI Perspectives
PCI Perspectives
量子位
P
Palo Alto Networks Blog
S
Securelist
T
Troy Hunt's Blog
博客园 - 【当耐特】
Recorded Future
Recorded Future
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
S
Security Affairs
Engineering at Meta
Engineering at Meta
T
The Blog of Author Tim Ferriss
博客园 - 聂微东
罗磊的独立博客
N
News and Events Feed by Topic
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
NISL@THU
NISL@THU
C
Cisco Blogs
T
Threatpost
有赞技术团队
有赞技术团队
Forbes - Security
Forbes - Security
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
T
The Exploit Database - CXSecurity.com
Cloudbric
Cloudbric
Cyberwarzone
Cyberwarzone
Google DeepMind News
Google DeepMind News
C
Cyber Attacks, Cyber Crime and Cyber Security

博客园 - venjiang

发布Asp.Net Forums V2.2.1929 官方中文Beta版 转换DotNetNuke为C#版 Asp.Net Forums 2.0.1 内部开发版系统文件说明 发布Asp.Net Forums V2 中文官方 10.1 国庆版 asp.net forums2 本地化版本0831发布(开源) Asp.Net Forums2 本地化工作记录0831 获取的本地区域为何不变?搞得我头都大了! [转贴]IIS6.0服务器无法访问解决方案总结 测试你的Blog价值 Data Access Application Block V2 类库中文文档 Data Access Application Block 3.1 博客园LOGO[修改版] DotNet开发人员现在应该下载的十种必备工具下载说明 模拟Asp.Net Forums 2.0 数据提供者类 Caching ASP.NET pages 卸载Windows Messenger 和高手过招 解决Automation 服务器不能创建对象 [Asp.Net Forums 2.0]增加Pager控件没有的跳转页功能
Asp.Net Forums2组件库简要说明
venjiang · 2004-08-19 · via 博客园 - venjiang

1.ForumsDataProvider类,抽象类(多数据库支持的实现)

是所有数据提供者的基类, 其中静态方法public static ForumsDataProvider Instance (HttpContext context, string providerTypeName, string databaseOwner, string connectionString)方法使用ConstructorInfo.Invoke 方法 实现了不同类型数据库提供者类的调用(执行配置文件中默认数据提供者类的构造函数)
方法说明:
public object Invoke(object[] parameters);
调用具有指定参数的实例所反映的构造函数,并为不常用的参数提供默认值。
参数:
parameters
与此构造函数的参数的个数、顺序和类型(受默认联编程序的约束)相匹配的值数组。如果此构造函数没有参数,则像 Object[] parameters = new Object[0] 中那样,使用包含零元素或空引用(Visual Basic 中为 Nothing)的数组。如果数组中的对象未用值来显式初始化,则该对象将包含该对象类型的默认值。对于引用类型的元素,该值为空引用 (Nothing)。对于值类型的元素,该值为 0、0.0 或 false,具体取决于特定的元素类型。

参考: 模拟Asp.Net Forums 2.0 数据提供者类

2.ResourceManager类 (多语言的实现)

名字空间: namespace AspNetForums.Components
功能:获取支持的语言集,获取指定标识的在语言文件中的值

3.User类(Component目录)