摘要: 原文链接http://blog.sina.com.cn/s/blog_5d2ef8320100fcar.html 如果Page指令的AutoEventWireup属性被设置为 true(或者如果缺少此属性,因为它默认为true),该页框架将自动调用页事件,即Page_Init 和Page_Load方法。在这种情况下,不需要任何显式的Handles子句或委托。 在Web服务器控件中,某些事件(通常是Click事件)会导致窗体被回发到服务器。HTML 服务器控件和Web服务器控件(如TextBox控件)中的更改事件将被捕获,但不会立即导致发送。相反,它们会被该控件缓存,直到发送再次发生时为止。然后 阅读全文
posted @ 2013-02-16 14:48 南潇湘 阅读(354) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript">function bookmarksite(title, url){if (document.all) window.external.AddFavorite(url, title);else if (window.sidebar) window.sidebar.addPanel(title, url, "")}</script><a href="javascript:bookmarksite('简单的猪的博客', 'http:/ 阅读全文
posted @ 2013-02-16 10:24 南潇湘 阅读(147) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/chenli985/article/details/5247416using System;using System.Threading;public class arr{public static void Main(){//int[] arr; //arr = new int[5];int luzi;for(luzi=1;luzi<10000;luzi++){Console.WriteLine("第"+luzi+"行");if (luzi==5000){Thread.Sleep(10000);}}}}第 阅读全文
posted @ 2013-01-19 11:13 南潇湘 阅读(284) 评论(0) 推荐(0) 编辑
摘要: <%@ WebHandler Language="C#" Class="ValidateCode" %>using System;using System.Web;using System.Drawing;using System.Web.SessionState;public class ValidateCode : IHttpHandler,IRequiresSessionState { public void ProcessRequest(HttpContext context) { context.Response.ContentTy 阅读全文
posted @ 2013-01-15 14:46 南潇湘 阅读(321) 评论(0) 推荐(0) 编辑
摘要: List<Photo> photos=new List<Photo>(); string json = ser.Serialize(photos); return json;在ajaxList.ashx中获得后台数据,以Json格式返回给前台。//时间格式转换 function ChangeDateFormat(cellval) { var date = new Date(parseInt(cellval.replace("/Date(", "").replace(")/", ""), 10 阅读全文
posted @ 2013-01-15 14:44 南潇湘 阅读(735) 评论(0) 推荐(0) 编辑
摘要: 页面的下载应用<ahref="HandlerDownLoad.ashx?file=07.jpg">下载</a>HandlerDownLoad.ashx代码public class HandlerDownLoad : IHttpHandler { public void ProcessRequest (HttpContext context) { string fileName = context.Request.QueryString["file"]; context.Response.AddHeader("Conten 阅读全文
posted @ 2013-01-15 14:32 南潇湘 阅读(798) 评论(0) 推荐(0) 编辑
摘要: 页面下拉单的应用,ViewData["atypeList"]是List<SelectListItem> <%=Html.DropDownList("dd", (IEnumerable < SelectListItem > )ViewData["atypeList"])%>ListBox的应用//准备数据SelectListItem news = new SelectListItem { Text = "请选择", Value = null };List<SouGeDB.Pl 阅读全文
posted @ 2013-01-14 17:36 南潇湘 阅读(202) 评论(0) 推荐(0) 编辑
摘要: <td> <input class="btn" type="button" value="取消" onclick="cal()"/> </td> <td> <input class="btn" type="submit" value="保存" /> </td> </tr> </table> <% } %> <script type=" 阅读全文
posted @ 2013-01-14 17:23 南潇湘 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 文章转自 http://www.2cto.com/kf/201206/138104.htmljquery autocomplete插件结合ajax使用demo 首先是引入文件,除了juqery和juqeryUI的基本文件外,还需要引入下面的文件1<!-- autocomplete -->2<script src="<%=request.getContextPath()%>/share/js/jqueryPlugin/autoComplete/jquery.ui.core.js"></script>3<script src 阅读全文
posted @ 2013-01-12 09:29 南潇湘 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 其中不乏Google、163邮箱、搜狐、Discuz等大站使用的图标,都被我分离,整理出来了,列在下面与大家共享:MSN:2008-3-16新增2个QQ加载图标2008-3-17 新增新网互联后台加载图标一个2008-3-22 新增123cha的加载图标一个2008-3-22 新增中关材的加载图标一个(这个加载图标中关村在作栏目的LOGO,实在让人想不通,看得晕晕的)2008-3-27 再新增未知站图标一个,iFOTO图片查看器加载图片一张(感谢陈智彬提供)再来一个DISCUZ的早前雅虎的...本文转自 http://blog.163.com/wxdl_1029/blog/static/446 阅读全文
posted @ 2013-01-12 08:53 南潇湘 阅读(279) 评论(0) 推荐(0) 编辑