- 注册时间
- 2012-7-23
- 最后登录
- 2014-12-12
- 阅读权限
- 10
- 积分
- 418
- 精华
- 0
- 帖子
- 113
|
您好,我看miniui控件中都是加载这样的文件,现在想问一下,这种方式在开发大量访问的系统时,有没有必弊端?
能有多大的并发量呢?- protected void Page_Load(object sender, EventArgs e)
- {
- String methodName = Request["method"];
- if (String.IsNullOrEmpty(methodName)) return;
- //invoke method
- Type type = this.GetType();
- MethodInfo method = type.GetMethod(methodName);
- method.Invoke(this, null);
- }
复制代码 |
|