会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
破碎记忆
博客园
首页
新随笔
联系
订阅
管理
2016年9月26日
C# 数据操作工具类
摘要: CREATE PROCEDURE [dbo].[RecordFromPage] @SelectList VARCHAR(max), @TableSource VARCHAR(100), @SearchCondition VARCHAR(max), @OrderExpression VARCHAR(1000), @...
阅读全文
posted @ 2016-09-26 15:08 破碎记忆
阅读(1707)
评论(0)
推荐(0)
2016年9月14日
关于web请求中 获取真实IP
摘要: HttpRequest request = HttpContext.Current.Request; if (!string.IsNullOrEmpty(request.ServerVariables["HTTP_X_FORWARDED_FOR"])) { //ip = GetCDNIP(r...
阅读全文
posted @ 2016-09-14 09:44 破碎记忆
阅读(798)
评论(0)
推荐(0)
2015年6月8日
生成二维码
摘要: /// /// /// /// /// public string generateQRCode(string visitUrl) { string filename = string.Empty; string fil...
阅读全文
posted @ 2015-06-08 15:01 破碎记忆
阅读(117)
评论(0)
推荐(0)
2015年3月25日
网站验证码制作与调用
摘要: 后台 一般处理程序生成验证码: 1 public void ProcessRequest(HttpContext context) 2 { 3 int codeW = 80; 4 int codeH = 22; 5 ...
阅读全文
posted @ 2015-03-25 10:46 破碎记忆
阅读(140)
评论(0)
推荐(0)
2015年2月2日
学习 .net 的一些主要网站
摘要: 学习 .net 的一些主要网站 来自http://www.cnblogs.com/trymybest121/articles/500176.html http://msdn.microsoft.com 微软公司的在线技术资源库,在学习中遇到各种问题通常都能在这儿找到答案。 http://www.a...
阅读全文
posted @ 2015-02-02 14:24 破碎记忆
阅读(187)
评论(0)
推荐(0)
2015年1月28日
MSSQL 数字钱转化为大写
摘要: --说明:--1.本函数范围从 毫 ~ 兆--2.有四种精度(元,角 ,分,厘 ,毫)--3.有三种进位规则(四舍五入,接舍去,非0就入)--参数说明:dbo.MoneyToCapital( 数值 , 进位 , 精度)--进位 (0 四舍五入, 1 直接舍去,2 非0就入)--精确度 (0 元,1 ...
阅读全文
posted @ 2015-01-28 13:32 破碎记忆
阅读(463)
评论(0)
推荐(0)
2015年1月7日
Easyui 加载树(easyui-tree)[dotnet]
摘要: 前台 html:javascript 加载$("#ul_Tree").tree({ url: '/webservice/CreditExtension/CreditExtension.asmx/QueryImages?Hid_FileCode=' + $("#Hid_FileCode...
阅读全文
posted @ 2015-01-07 10:37 破碎记忆
阅读(255)
评论(0)
推荐(0)
2014年11月17日
C# ASPX.NET 文件(图片)下载
摘要: 最好使用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 破碎记忆
阅读(721)
评论(0)
推荐(0)
2014年11月10日
生成 网站“面包屑” XML
摘要: 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 破碎记忆
阅读(212)
评论(0)
推荐(0)
2014年11月7日
easyui combobox 模糊检索数据并填充
摘要: $("#id"),combobox({ url:'', ...... filter:function(q,row){ var op = $(this).combobox("options"); return row[op.textField].toLowerCase.ind...
阅读全文
posted @ 2014-11-07 16:08 破碎记忆
阅读(368)
评论(0)
推荐(0)
下一页
公告