上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页
摘要: .JQtabel{/*border: red solid 1px; position: relative; top: 100px; left: 300px;*/}.t_header{background-color: #0B7DB2;height: 40px;}/*标题栏文本样式*/.title{margin-left: 7px;font-size: 26px;position: relative;top: 6px;left: 0px;}/*标题栏文本搜索框的样式*/.searchtxt{border: 1px solid;width: 120px;height: 22px;backgroun 阅读全文
posted @ 2012-08-28 17:53 zhangchun 阅读(568) 评论(0) 推荐(0) 编辑
摘要: /// <reference path="jquery-1.4.1.min.js" />//增加插件方法jQuery.fn.extend({ JQtable: function(options, data) { //设置控件的总体宽度和样式(位置) if (options.width == undefined || options.width == '') { options.width = 450; } this.width = this.width(options.width); //this.addClass("JQtabel&q 阅读全文
posted @ 2012-08-28 17:53 zhangchun 阅读(2082) 评论(0) 推荐(0) 编辑
摘要: <divstyle="display:none"id="upimg"><tablecellpadding="0"cellspacing="0"style="border-collapse:collapse;border:solid 1px#9bc4e9;width:360px"> <tr> <tdalign='center'style='width:100px;border:solid 1px#9bc4e9'>图片: 阅读全文
posted @ 2012-08-22 18:01 zhangchun 阅读(628) 评论(0) 推荐(0) 编辑
摘要: view plaincopy to clipboardprint?01.//存储信息 02.Session["myname"]="Lee"; 03.//获得信息 04.myname=Session["myname"]j' 05.//清除Session 06.Session.Clear()//从Session状态集合中移除所有的键和值。 07.Session.Abandon()//取消当前Session会话 2.Session超时和莫名丢失的处理。 原因:2.1:服务器内在不中致Session丢失。 2.2:程序有框架页面和跨域 阅读全文
posted @ 2012-08-22 13:04 zhangchun 阅读(16791) 评论(1) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.IO;using System.Security.Cryptography;using System.Text;name 阅读全文
posted @ 2012-08-22 10:48 zhangchun 阅读(7000) 评论(0) 推荐(1) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Script.Serialization;using System.Data;/// <summary> /// JSON帮助类 /// </summary> publicclassJSONHelper{ /// <summary> /// 对象转JSON /// </summary> /// <param name="obj" 阅读全文
posted @ 2012-08-21 16:29 zhangchun 阅读(31806) 评论(1) 推荐(4) 编辑
摘要: 今天做一个系统,由于服务器有点慢,所以常会被点击两次或三次,提交的数据就是多次了。所以要让按钮点击后,不能再次点击。对于一个按钮,要让变成恢色的,只要this.disabled=true就可以了,可是在.NET里,添加了ONCLICK后,就无法提交信息了。所以要加上以下代码。<asp:Button ID="btnSub" runat="server" Text="回复" OnClick="btnSub_Click" />btnSub.Attributes.Add("onclick", 阅读全文
posted @ 2012-08-21 16:08 zhangchun 阅读(4154) 评论(1) 推荐(0) 编辑
摘要: if(!(filename.EndsWith(".jpg")|| filename.EndsWith(".gif"))) { Label10.Text="图片只能是jpg,gif格式"; return; } 阅读全文
posted @ 2012-08-21 16:04 zhangchun 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 如果你要保证数据的安全性,你可以在ashx中使用session验证。如:你的index.aspx中使用jquery回调ashx数据,那么在index.aspx page_load时session["checked"]="true",在ashx中验证session是否存在。但ashx中要获取session内容还需如下几步:①导入命名空间using System;using System.Web;using System.Web.SessionState;//第一步:导入此命名空间②实现接口publicclassMyWeb:IHttpHandler将此改为如 阅读全文
posted @ 2012-08-21 16:00 zhangchun 阅读(6769) 评论(0) 推荐(0) 编辑
摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Jquerytable.aspx.cs" Inherits="WebApplication2.Jquerytable" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional. 阅读全文
posted @ 2012-08-07 17:57 zhangchun 阅读(246) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页