ASP.net
文章平均质量分 58
tracyly1029
这个作者很懒,什么都没留下…
展开
-
GridView里面的HyperLink和ButtonField操作总结
HyperLink的操作前段时间已经研究的颇有心得了,但是ButtonField却一直没有解决,这个问题困扰了我多日,中间因为考试中段了一段时间,现在重新找出来发现问题还是没有解决,在查找了一些资料之后终于搞定了,其实挺简单的,这里面用到了一个小技巧,那就是使用TemplateF原创 2011-08-02 12:10:36 · 596 阅读 · 0 评论 -
checkbox in the panel control under control of one page
If you have one page has the updatepanel inside and want to use checkbox with child update panel in the child control. You will get the loading screen. What you need to stop the forever loading, you s原创 2012-04-25 22:57:45 · 346 阅读 · 0 评论 -
make the label text wrap in the gridview
asp:TemplateFieldHeaderText="Course Name"SortExpression="title"HeaderStyle-HorizontalAlign="Center"ItemStyle-HorizontalAlign="Left"ItemStyle-Width="35%">ItemTemplate>divstyle="原创 2012-06-07 01:41:34 · 355 阅读 · 0 评论 -
Interacting With Get and Post Methods in ASP.NET
Interacting With Get and Post Methods in ASP.NETPosted by triaslama on May 1, 2008There are two common ways to pass data from one page to another, using http Get and Post methods. In Get method, d转载 2012-06-19 10:58:20 · 569 阅读 · 0 评论 -
according to datakey in th grid to show the image or not
GridLines="Both" CssClass="SearchGrid" AllowPaging="true" AllowSorting="true" EmptyDataText="No items returned." PagerSettings-Position="TopAndBottom" OnRowDataBound="grv_RowDataB原创 2012-07-02 23:56:58 · 352 阅读 · 0 评论 -
iframe
Iframe标记,又叫浮动帧标记,你可以用它将一个HTML文件嵌入在另一个HTML中显示。它不同于Frame标记最大的特征即这个标记所引用的HTML文件不是与另外的HTML文件相互独立显示,而是可以直接嵌入在一个HTML文件中,与这个HTML文件内容相互融合,成为一个整体,另外,还可以多次在一个页面内显示同一内容,而不必重复写内容,甚至可以在同一HTML文件嵌入多个HTML文件。 在脚本转载 2012-07-26 10:27:53 · 391 阅读 · 0 评论 -
TreeView SkipLinkText
TreeView SkipLinkText 是给不用显示器的人用的,当他们读到相同treeview control时会读出alt中的文字。 如果不用此property就将其设置为string.empty(c#)/""(Asp.net),这样就不会造成页面有空白行了。---------------------------------------------------------转载 2012-10-02 22:35:41 · 1154 阅读 · 0 评论 -
Click button show the confirmation popup first then call the onlick event in C#
asp:imagebuttonid="ImageButtonSubmit"runat="server"ImageURL="images/delete.jpg"onclick="submit_button"OnClientClick="return confirm('Are you sure you want to delete the messages?');">asp:imagebutt转载 2012-09-17 22:58:47 · 390 阅读 · 0 评论 -
ASP.NET页面生命周期描述
ASP.NET页面生命周期描述下面是ASP.NET页面初始的过程:1. Page_Init();2. Load ViewState;3. Load Postback data;4. Page_Load();5. Handle control events;6. Page_PreRender();7. Page_Render();8. Unload event转载 2012-09-18 09:47:36 · 453 阅读 · 0 评论 -
checkbox_checkedChanged not work you have to add autopostback to true
AutoPostBack="true" />原创 2012-04-25 00:04:45 · 291 阅读 · 0 评论 -
dropdown list 的 RequiredFieldValidator
CssClass="lblSystemWarning" ErrorMessage=" * required" InitialValue="-1">C# if (ddlSelectAccount.SelectedIndex { DataTable dtSelectAccount = LMS.Data.A原创 2012-03-17 19:43:35 · 677 阅读 · 0 评论 -
ASP.NET Button、ImageButton、LinkButton、HyperLink区别
这4个控件都属于WEB服务器控件,有很多相同的属性和事件。其区别如下所示。q 在*.aspx页面中插入Button控件如以下代码所示。在页面运行后,Button控件最终生成的HTML标签如以下代码所示。即Button控件最终生成的是HTML表单控件中原创 2011-08-02 12:22:35 · 2242 阅读 · 0 评论 -
GridView里面的HYPERLINK数据邦定
一:最基本HyperLink的最基本的属性:NavigateUrl 是 要连接的地址 可在可视化界面设定或者.CS页 HyperLink(控件ID).NavigateUrl =WWW.XXXXXX.ASPX要在页面进行传参数的话 可以有两个基本方转载 2011-08-02 12:26:33 · 779 阅读 · 0 评论 -
asp.net常用代码~
http://tech.163.com/06/0118/17/27P3JO0800091KUK.htmlASP.NET常用代码2007-10-26 15:411. 打开新的窗口并传送参数: 传送参数:response.write("window.open('*.aspx?id="+this.DropDownList1.SelectIndex+"&id转载 2011-11-03 05:44:15 · 320 阅读 · 0 评论 -
Serializable 作用
Serializable 作用 序列化的attribute,是为了利用序列化的技术准备用于序列化的对象必须设置 [System.Serializable] 标签,该标签指示一个类可以序列化。便于在网络中传输和保存这个标签是类可以被序列化的特性,表示这个类可以被序列化。什么叫序列化?我们都知道对象是暂时保存在内存中的,不能用U盘考走了,有时为了使用介质转移对象,并转载 2011-12-15 01:37:46 · 58266 阅读 · 1 评论 -
ASP.NET 4 Website Template Default Objects
ASP.NET 4 Website Template Default ObjectsOBJECT NAMEDESCRIPTIONAccountContains user management forms for registering new users, logging in, and changing password转载 2011-12-28 10:19:52 · 370 阅读 · 0 评论 -
网页执行顺序
在有母版页的情况下,处理顺序:第01步、内容页的 Page_PreInit第02步、母版页的 Page_Init第03步、内容页的 Page_Init第04步、内容页的 Page_InitComplete第05步、内容页的 Page_PreLoad第06步、内容页的 Page_Load第07步、母版页的 Page_Load第08步、母版页或内容页的 按钮点击等回发事件(Maste原创 2012-01-06 11:22:05 · 452 阅读 · 0 评论 -
ASP.NET 页生命周期
ASP.NET页运行时,此页将经历一个生命周期,在生命周期中将执行一系列处理步骤。这些步骤包括初始化、实例化控件、还原和维护状态、运行事件处理程序代码以及进行呈现。了解页生命周期非常重要,因为这样做您就能在生命周期的合适阶段编写代码,以达到预期效果。此外,如果您要开发自定义控件,就必须熟悉页生命周期,以便正确进行控件初始化,使用视图状态数据填充控件属性以及运行任何控件行为代码。(控件的生命周期基于转载 2012-09-18 09:43:18 · 385 阅读 · 0 评论