zoukankan
html css js c++ java
OnClientClick
看discuz.NET2.0的Controls,没有OnClientChlick,细看,名称起到不对,估计直接复制的
/**/
///
<summary>
///
要加载的客户端脚本内容
///
</summary>
[Description(
"
客户端脚本
"
), DefaultValue(
""
)]
public
string
ScriptContent
{
get
{
object
obj
=
ViewState[
"
ScriptContent
"
];
return
obj
==
null
?
""
: (
string
)obj;
}
set
{
ViewState[
"
ScriptContent
"
]
=
value;
}
}
赋
[WebSysDescription(
"
Button_OnClientClick
"
), WebCategory(
"
Behavior
"
), DefaultValue(
""
), Themeable(
false
)]
public
virtual
string
OnClientClick
{
get
{
string
str
=
(
string
)
this
.ViewState[
"
OnClientClick
"
];
if
(str
==
null
)
{
return
string
.Empty;
}
return
str;
}
set
{
this
.ViewState[
"
OnClientClick
"
]
=
value;
}
}
此文标记.
查看全文
相关阅读:
AngularJs学习笔记Understanding the Controller Component
AngularJs学习笔记Dependency Injection(DI,依赖注入)
AngularJs学习笔记Forms
AngularJs学习笔记Modules
AngularJs学习笔记IE Compatibility 兼容老版本IE
Oracle trigger Demo
Debugging tips in VS
Adding a Strong Name to an existing DLL that you don't have the source to
Webservice
Tips to import DB dump of a big size
原文地址:https://www.cnblogs.com/zjy/p/1240945.html
最新文章
2、python逐行读取文件内容的三种方法
1、Python基础知识
2、PyCharm的设置
3、python之文件部分
0、python简介
1、PyCharm的下载、安装
Android类动态加载技术
Android的图片缓存处理和性能优化
android的ndk下,解决两个so相互调用的问题
TCP/IP三次握手详解
热门文章
转 android 动态加载 插件模型开发
android dlopen调用so库
不能直接将.so文件直接添加到Android的JAR包了
中文字体字号和磅数的转化
Android手机分辨率基础知识(DPI,DIP计算)
AngularJs学习笔记Understanding the Model Component
AngularJs学习笔记Scope
AngularJs学习笔记I18n/L10n
AngularJs学习笔记expression
AngularJs学习笔记directive
Copyright © 2011-2022 走看看