Form Now On...

导航

 

2011年8月24日

摘要: 1 内容Html<form method="post" action=""> 你爱好的运动是? <br/> <input type="checkbox" name="items" value="足球"/>足球 <input type="checkbox" name="items" value="篮球"/>篮球 <input type="checkbox" name 阅读全文
posted @ 2011-08-24 23:00 zjwei55 阅读(1211) 评论(0) 推荐(0) 编辑
 
摘要: 1 内容Html<body><div><br/>筛选:<input id="filterName" /><br/></div><table> <thead> <tr><th>姓名</th><th>性别</th><th>暂住地</th></tr> </thead> <tbody> <tr><td>张山</td><td> 阅读全文
posted @ 2011-08-24 22:49 zjwei55 阅读(901) 评论(1) 推荐(0) 编辑
 
摘要: 1 html代码<div class="tab"> <div class="tab_menu"> <ul> <li class="selected">时事</li> <li>体育</li> <li>娱乐</li> </ul> </div> <div class="tab_box"> <div>时事</div> <div class=" 阅读全文
posted @ 2011-08-24 22:42 zjwei55 阅读(399) 评论(0) 推荐(0) 编辑
 
摘要: 直接上代码1 json数据[ { "username": "张三", "content": "沙发." }, { "username": "李四", "content": "板凳." }, { "username": "王五", "content": "地板." }]2 css<style>* { margin:0; padding:0;}bod 阅读全文
posted @ 2011-08-24 22:30 zjwei55 阅读(301) 评论(0) 推荐(0) 编辑
 
摘要: 插件分为对象插件和类插件下面介绍对象插件Html代码:<table id="table2"> <thead><tr><th> </th><th>姓名</th><th>性别</th><th>暂住地</th></tr></thead> <tbody> <tr> <td><input type="checkbox" name="choice" v 阅读全文
posted @ 2011-08-24 22:25 zjwei55 阅读(288) 评论(0) 推荐(0) 编辑
 
摘要: 在服务器或者本机上安装windows Server 2003 后,如果熟悉使用XP风格的会觉得不习惯,现在把windows server2003 设置为xp风格1 启动服务中的Themes开始->运行->Services.msc打开服务列表Themes 设置为自动启动,同时启动该服务2 在桌面->属性->外观 中设置窗口和按钮样式下拉列表中出现Windows XP样式另外一种方法是:我的电脑->属性->高级->性能->设置winserver 默认是自定义的最佳性能,如果调整为最佳外观也可以产生类XP的风格3 设置Windows server 的字 阅读全文
posted @ 2011-08-24 15:08 zjwei55 阅读(427) 评论(0) 推荐(0) 编辑
 

2011年8月23日

摘要: 1 添加一般处理程序 ashx<%@ WebHandler Language="C#" Class="Handler" %>using System;using System.Drawing;using System.Drawing.Imaging;using System.Text;using System.Web;using System.Web.SessionState;public class Handler : IHttpHandler, IRequiresSessionState { public void ProcessRequ 阅读全文
posted @ 2011-08-23 22:07 zjwei55 阅读(192) 评论(0) 推荐(0) 编辑
 
摘要: 1 简单处理<form action="Handler1.ashx" method="post" ><p>客户名称: <input type="text" name="CustomerName" style="width: 300px" /></p><p>客户电话: <input type="text" name="CustomerTel" style="width: 300px& 阅读全文
posted @ 2011-08-23 21:29 zjwei55 阅读(508) 评论(0) 推荐(0) 编辑
 
摘要: 1 cookie 使用写入cookieHttpCookie cookie = new HttpCookie("MyCookieName", "string value");Response.Cookies.Add(cookie);读取 cookieHttpCookie cookie = Request.Cookies["MyCookieName"];if( cookie != null ) labCookie1.Text = cookie.Value;else labCookie1.Text = "未定义";删除H 阅读全文
posted @ 2011-08-23 21:15 zjwei55 阅读(153) 评论(0) 推荐(0) 编辑
 

2011年8月19日

摘要: public class UrlRouteModule : IHttpModule { private static string URL_FLAG = "/q/"; //Url中区别路径和参数的分隔符 private static string URL_SUFFIX = ".aspx"; //对哪种后缀的Url实施Rewrite public void Init(HttpApplication context) { context.BeginRequest += new EventHandler(context_BeginRequest); } pri 阅读全文
posted @ 2011-08-19 22:07 zjwei55 阅读(189) 评论(1) 推荐(0) 编辑