上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: SON页<html><head> <title>计划选择</title> <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script type="text/javascript"> $.post("gervalue.ashx", { "action": "getpagedata", "p 阅读全文
posted @ 2013-05-19 12:58 BicycleBoy 阅读(964) 评论(0) 推荐(0) 编辑
摘要: 一般处理程序页using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data;using PublicTool;namespace OA.Module.WorkReport{ /// <summary> /// pageData 的摘要说明 /// </summary> public class pageData : IHttpHandler { public void ProcessRequest(HttpContext context 阅读全文
posted @ 2013-05-19 12:57 BicycleBoy 阅读(206) 评论(0) 推荐(0) 编辑
摘要: <html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script src="../Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script src="../Scripts/Datepicker/WdatePicker.js" type="text/javascript&quo 阅读全文
posted @ 2013-05-19 12:55 BicycleBoy 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 页面前端JSfunction filldate(type, page, status) {//类型,页号,状态 $.post("showdata.ashx", { "par": type + ',' + page + "," + status }, function (data, status) { if (data != "") { var data1 = data.split(";"); $("#showdata").empty(); $("#s 阅读全文
posted @ 2013-05-19 12:53 BicycleBoy 阅读(479) 评论(0) 推荐(0) 编辑
摘要: SqlParameter[] sp = new SqlParameter[] {new SqlParameter("@id", SqlDbType.Int),new SqlParameter("@age", SqlDbType.Int) };//实例化一个SqlParameter对像 sp[0].Value = 1;//为SqlParameter对像赋值 sp[1].Direction = ParameterDirection.Output;//将对像中指定参数设置为输出变量public SqlParameter[] pulicMethod(string 阅读全文
posted @ 2013-05-19 12:50 BicycleBoy 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 前端代码:数据库表结构如下:id pname parent记得引用jquery和SelectPermission外部JS文件<style type="text/css"> #showhide { width: 100%; height: 100%; background-color: #FFFFFF; position: absolute; left: 0; top: 0; display: none; } #selectPermission{ width:100%; line-height:25px... 阅读全文
posted @ 2013-05-19 12:48 BicycleBoy 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 页面代码:NOTE:需要jquery插件(Uploadify)下载地址:uploadify下载<%@ Page Language="C#" CodeBehind="AsynchronousUpload.aspx.cs"Inherits="Example.AsynchronousUpload" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/x 阅读全文
posted @ 2013-05-19 12:38 BicycleBoy 阅读(1135) 评论(0) 推荐(0) 编辑
摘要: 1、删除多余启动项 重装系统后有时会残留下以前版本的系统启动项,而且在系统配置启动项中见不到,但在电脑起动和故障恢复属性中确存在,可以用以下方式彻底删除: (1)在命令提示符模式下输入:【bcdedit】查看当前所有系统启动项 (2)接着输入【bcdedit /delete /?】查看当前系统中存在 阅读全文
posted @ 2013-05-19 12:37 BicycleBoy 阅读(216) 评论(0) 推荐(0) 编辑
摘要: <head runat="server"><title></title><script src="script/jquery-1.4.1.js" type="text/javascript"></script><script type="text/javascript">function getCookie(c_name) {if (document.cookie.length > 0) {c_start = document.cooki 阅读全文
posted @ 2013-05-19 12:36 BicycleBoy 阅读(117) 评论(0) 推荐(0) 编辑
摘要: private void cookieSerilizse(){//序列化string str = "I'm a test data";IFormatter fm = new BinaryFormatter();//实例化一个二进制序列化对象MemoryStreamms=new MemoryStream();//实例如化一个内存流对象fm.Serialize(ms, str);//进行序列化ms.Seek(0, SeekOrigin.Begin);//指定当前流的位置StreamReader sr = new StreamReader(ms);//实例化流的新实例st 阅读全文
posted @ 2013-05-19 12:35 BicycleBoy 阅读(1144) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页