摘要: CREATE PROCEDURE [dbo].[RecordFromPage] @SelectList VARCHAR(max), @TableSource VARCHAR(100), @SearchCondition VARCHAR(max), @OrderExpression VARCHAR(1000), @... 阅读全文
posted @ 2016-09-26 15:08 破碎记忆 阅读(1674) 评论(0) 推荐(0) 编辑
摘要: HttpRequest request = HttpContext.Current.Request; if (!string.IsNullOrEmpty(request.ServerVariables["HTTP_X_FORWARDED_FOR"])) { //ip = GetCDNIP(r... 阅读全文
posted @ 2016-09-14 09:44 破碎记忆 阅读(789) 评论(0) 推荐(0) 编辑
摘要: /// /// /// /// /// public string generateQRCode(string visitUrl) { string filename = string.Empty; string fil... 阅读全文
posted @ 2015-06-08 15:01 破碎记忆 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 后台 一般处理程序生成验证码: 1 public void ProcessRequest(HttpContext context) 2 { 3 int codeW = 80; 4 int codeH = 22; 5 ... 阅读全文
posted @ 2015-03-25 10:46 破碎记忆 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 学习 .net 的一些主要网站 来自http://www.cnblogs.com/trymybest121/articles/500176.html http://msdn.microsoft.com 微软公司的在线技术资源库,在学习中遇到各种问题通常都能在这儿找到答案。 http://www.a... 阅读全文
posted @ 2015-02-02 14:24 破碎记忆 阅读(157) 评论(0) 推荐(0) 编辑
摘要: --说明:--1.本函数范围从 毫 ~ 兆--2.有四种精度(元,角 ,分,厘 ,毫)--3.有三种进位规则(四舍五入,接舍去,非0就入)--参数说明:dbo.MoneyToCapital( 数值 , 进位 , 精度)--进位 (0 四舍五入, 1 直接舍去,2 非0就入)--精确度 (0 元,1 ... 阅读全文
posted @ 2015-01-28 13:32 破碎记忆 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 前台 html:javascript 加载$("#ul_Tree").tree({ url: '/webservice/CreditExtension/CreditExtension.asmx/QueryImages?Hid_FileCode=' + $("#Hid_FileCode... 阅读全文
posted @ 2015-01-07 10:37 破碎记忆 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 最好使用aspx页面写: 1 protected void Page_Load(object sender,EventArgs e) 2 { 3 if(!IsPostBack) 4 { 5 System.Io.FileStream myFileStream = ne... 阅读全文
posted @ 2014-11-17 18:37 破碎记忆 阅读(693) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.IO;using System.Threading;using System.Xml;namespace Helper{ public class SitemapXml { ... 阅读全文
posted @ 2014-11-10 13:04 破碎记忆 阅读(208) 评论(0) 推荐(0) 编辑
摘要: $("#id"),combobox({ url:'', ...... filter:function(q,row){ var op = $(this).combobox("options"); return row[op.textField].toLowerCase.ind... 阅读全文
posted @ 2014-11-07 16:08 破碎记忆 阅读(360) 评论(0) 推荐(0) 编辑