
Asp.Net
华溪程序员
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
生成二维码--支持中文,web和winform均可调用
using System; using System.Collections.Generic; using System.Text; using System.Drawing; using System.IO; using ThoughtWorks.QRCode.Codec; using ThoughtWorks.QRCode.Codec.Data; using System.Tex原创 2014-01-29 16:00:15 · 904 阅读 · 0 评论 -
图片水印
转载地址:http://blog.youkuaiyun.com/wonsoft/article/details/4136711 /* * Class:WaterImage * Use for add a water Image to the picture both words and image * 2007.07.23 create the file * * http://转载 2014-02-08 17:34:04 · 591 阅读 · 0 评论 -
把js文件嵌入cs文件所在的dll
1.cs文件代码 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.ComponentModel; using System.Da原创 2014-04-22 16:28:08 · 450 阅读 · 0 评论 -
在图片添加旋转的水印文字
/// /// 在图片添加旋转的水印文字 /// /// 文件路径 /// 源图片名称 /// 目标图片名称 /// 水印文字内容 /// 水印文字字体大小 /// 水印文字透明度 /// 水印文字颜色 /// 旋转角度 /// 返回目标图片全路径 public string原创 2014-04-23 17:32:52 · 1538 阅读 · 0 评论 -
自定义服务器控件效果
原创 2014-05-27 09:19:09 · 412 阅读 · 0 评论 -
Jquery CheckBox、 RadioButton、 DropDownList取值赋值代码
随便jquery越来越受用户欢迎,它的功能也越来越多使用起来也方便了不少,下面我们介绍的是Jquery CheckBox、 RadioButton、 DropDownList取值赋值实例,有需要的朋友可以参考一下。 以下Jquery代码适query1.4版本以上。 1.获取选中值,三种方法都可以: $('input:radio:checked').val(); $("input[type=转载 2014-07-22 10:20:26 · 495 阅读 · 0 评论 -
添加中英文日志
原创 2014-06-19 14:17:07 · 783 阅读 · 0 评论 -
使用jQuery查找父元素或父节点的方法
转载 一、获取父元素: id="one" style="position:relative;"> id="two">hello id="three" style="position:relative;"> href="#">tonsh 1、parent:取得一个包含着所有匹配元素的唯一父元素的元素集合。 $("a转载 2014-08-19 10:19:25 · 3489 阅读 · 0 评论 -
百度地图距离计算,计算结果和调用百度的api一样
var DEF_PI = Math.PI; // 3.14159265359 var DEF_2PI = 2 * Math.PI; // 6.28318530712 var DEF_PI180 = Math.PI / 180.0; // 0.01745329252 var DEF_R = 6370996.81; // radius of earth // 利原创 2015-02-12 22:58:46 · 1381 阅读 · 0 评论