作用域当前类同一package子孙类其他packagepublic
√√√√protected√√√×friendly √√××private √×××不写时默认为friendly
分类:
编程语言 时间:
2014-05-10 05:13:46
阅读次数:
299
protected void Page_Load(object sender, EventArgs
e) { //设置Cookies HttpCookie cookie = new HttpCookie("UserName","ZhangSan"); ...
分类:
其他好文 时间:
2014-05-10 00:21:28
阅读次数:
247
1 2 3 4 5 1.aspx.cs 6 7 8 //上传文件按钮 9 protected void
btnUpload_Click(object sender, EventArgs e) 10 { 11 //定义保存路径 12 ...
分类:
其他好文 时间:
2014-05-09 15:53:42
阅读次数:
243
using System.Data;using System.Data.Sql;using
System.Data.SqlClient; protected void Page_Load(object sender, EventArgs e) {
SqlConn...
分类:
数据库 时间:
2014-05-09 04:01:32
阅读次数:
388
(Yii)使用renderPartial调用另外一个控制器的视图我们可以使用renderPartial访问存储在不同控制器的视图文件夹中的部分视图文件。在Yii1.1.3中,我们使用双斜线“//”,程序就会从视图文件夹开始搜索,例如:路径:protected/views/library/_book....
分类:
其他好文 时间:
2014-05-09 03:49:22
阅读次数:
275
sharepoint学习笔记汇总
http://blog.csdn.net/qq873113580/article/details/20390149
protected void Button1_Click(object sender, EventArgs e)
{
using (SPSite site = new SPSite("http:...
分类:
其他好文 时间:
2014-05-08 17:13:44
阅读次数:
254
asp.net下载文件几种方式 protected void Button1_Click(object
sender, EventArgs e) { /*
微软为Response对象提供了一个新的方法TransmitFile来解决使用Response.BinaryWrite 下载超过400m...
分类:
Web程序 时间:
2014-05-08 11:54:24
阅读次数:
498
#include
#include
using namespace std;
class CPerson
{
protected:
char *m_szName;
char *m_szId;
int m_nSex;//0:women,1:man
int m_nAge;
public:
CPerson(char *name,char *id,int sex,int age);
voi...
分类:
其他好文 时间:
2014-05-08 08:15:08
阅读次数:
250
后台: protected void ibtnRegedit_Click(object sender,
ImageClickEventArgs e) { if (!Page.IsValid || !CheckVCode()) retu...
分类:
其他好文 时间:
2014-05-08 00:44:32
阅读次数:
281
之前都是用扩展方法来copy属性值,不过兼容性不是很好。(关于这个扩展方法可以参照这个博客),不过我们可以通过下方的代码来实现,由于是微软提供的功能,所以不需要考虑兼容性问题:public partial class WebForm2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventAr...
分类:
其他好文 时间:
2014-05-08 00:19:02
阅读次数:
326