您目前尚未登陆,请选择【登陆】或【注册
首页->聊天计数->NChat简易聊天室源码(.Net 3.5,LINQ,AJAX)>>NChat.Controls/Panel.cs>>代码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:NChat简易聊天室源码(.Net 3.5,LINQ,AJAX)


当前文件路径:NChat/NChat.Controls/Panel.cs 文件类型
普通视图
		            
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5using Web = System.Web.UI.WebControls; 6using System.Web.UI.WebControls; 7 8namespace NChat.Controls 9{ 10 public class Panel : Web::Panel 11 { 12 private string text; 13 public string Text 14 { 15 get 16 { 17 if (ViewState["Text"] != null) 18 text = ViewState["Text"].ToString(); 19 return text; 20 } 21 set 22 { 23 ViewState.Add("Text", value); 24 } 25 } 26 27 protected override void OnInit(EventArgs e) 28 { 29 base.OnInit(e); 30 } 31 32 protected override void RenderContents(System.Web.UI.HtmlTextWriter writer) 33 { 34 writer.Write(Text); 35 base.RenderContents(writer); 36 } 37 } 38} 39
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:NChat简易聊天室源码(.Net 3.5,LINQ,AJAX)

- 明日网络考试系统源码

- 狂龙通讯录信息系统V1.0

- Ajax+Access简单留言本

- 简单网站计数器统(单用户)源码

- Acom进出仓管理系统源码

- 商务维基网源码

- Asp.net简单网上商店源码

- asp.net权限管理系统Demo源码

51Aspx.com 版权所有 CopyRight © 2000-2008. 京ICP备06046876号