上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: create function [dbo].[f_GetPy](@str nvarchar(4000))returns nvarchar(4000)asbegindeclare @strlen int,@re nvarchar(4000)declare @t table(chr nchar(1) collate Chinese_PRC_CI_AS,letter nchar(1))insert into @t(chr,letter) select '吖 ', 'A ' union all select '八 ', ... 阅读全文
posted @ 2012-11-13 17:32 一千零一夜 阅读(164) 评论(0) 推荐(0) 编辑
摘要: <style type="text/css"> #bottomNav { background-color: red; z-index: 999; position: fixed; bottom: 0px; left: 0px; width: 100%; _position: absolute; /* for IE6 */ _top: expression(documentEl... 阅读全文
posted @ 2012-11-13 17:32 一千零一夜 阅读(918) 评论(0) 推荐(0) 编辑
摘要: var tempColor; $(".listTable tr:even").css("backgroundColor", "#B3D59A"); $(".listTable tr:odd").css("backgroundColor", "#9AB3D5"); $(".listTable tr").mouseover(function () { tempColor = $(this).css("backgroundColor"); $ 阅读全文
posted @ 2012-11-13 17:31 一千零一夜 阅读(198) 评论(0) 推荐(0) 编辑
摘要: --完全相同的数据去掉重复select id,orderId from (select row_number() over(order by id) rowId,* from v_order) as tt where rowId in(select min(rowId) from (select row_number() over(order by id) rowId,* from v_order) bb group by id having count(id)>=1) 阅读全文
posted @ 2012-11-13 17:30 一千零一夜 阅读(766) 评论(0) 推荐(0) 编辑
摘要: ALTER proc [dbo].[addUser]( @mid int output,@phone nvarchar(20),@regmid int,@pwd nvarchar(30),@relname nvarchar(50), @email nvarchar(200),@tel nvarchar(20),@sex nvarchar(2),@photo nvarchar(300),@IDNum nvarchar(20), @integral decimal(18,2),@flag char(1),@linkkey nvarchar(50),@qq nvarchar(30)... 阅读全文
posted @ 2012-11-13 17:29 一千零一夜 阅读(1046) 评论(0) 推荐(0) 编辑
摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xml 阅读全文
posted @ 2012-11-13 17:28 一千零一夜 阅读(1711) 评论(0) 推荐(0) 编辑
摘要: public static string PostWebRequest(string Data, string URL) { CookieContainer cc = new CookieContainer(); string postData = Data; byte[] byteArray = Encoding.Default.GetBytes(postData); // 转化 HttpWebRequest webRequest2 = (HttpWebRequest)WebRequest.Create(new Uri(URL))... 阅读全文
posted @ 2012-11-13 17:27 一千零一夜 阅读(199) 评论(0) 推荐(0) 编辑
摘要: for(i in test){ alert(i);//i就是test的属性名 alert(test.i);//test.i就是属性值} 阅读全文
posted @ 2012-11-13 17:25 一千零一夜 阅读(96) 评论(0) 推荐(0) 编辑
摘要: function dhDiv(ee1){ //导航距离屏幕顶部距离 var _defautlTop = $("#"+ee1).offset().top - $(window).scrollTop(); //导航距离屏幕左侧距离 var _defautlLeft = $("#"+ee1).offset().left - $(window).scrollLeft(); //导航默认样式记录,还原初始样式时候需要 var _position = $("#"+ee1).css('position'); ... 阅读全文
posted @ 2012-11-13 17:25 一千零一夜 阅读(4140) 评论(2) 推荐(0) 编辑
摘要: <%@ WebHandler Language="C#" Class="ImageWater" %>using System;using System.Web;using System.Drawing;using System.IO;using System.Drawing.Imaging;public class ImageWater : IHttpHandler{ private string imagepath = "~/ImageFiles/"; //图片所在的文件夹 private const string wa 阅读全文
posted @ 2012-11-13 17:24 一千零一夜 阅读(217) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页