Form常用属性:BackgroundImage:设置背景图片BackgroundImageLayout:用于组件背景图像布局BackColor:获取或设置控件的背景色Form常用事件的使用: private void Form1_Load(object sender, EventAr...
湖南易通
function btnClick1() {
textbox1.value = "黄雪辉";
}
function btnClick2() {
//textbox2.value = "雪辉"; //当点击对应的“点一下”按钮的时候浏览器抛出错误“textbox2”...
分类:
其他好文 时间:
2014-07-25 11:27:01
阅读次数:
186
1.不用任何插件,利用iframe,将form的taget设为iframe的name,注意设为iframe的id是没用的,跟网上很多说的不太一致iframe_upload.htm Upload.aspx2.利用ajaxupload.jsD...
分类:
Web程序 时间:
2014-07-25 02:41:14
阅读次数:
347
最近在做异步上传文件的工作,用到了一些库,这里归纳下,暂且不考虑异常处理,仅作为demo。1.不用任何插件,利用iframe,将form的taget设为iframe的name,注意设为iframe的id是没用的,跟网上很多说的不太一致iframe_upload.htm ...
分类:
其他好文 时间:
2014-07-25 02:24:34
阅读次数:
337
1、在所有涉及到中文显示的页面头加上? ????#coding:utf-8 2、修改settings.py文件,添加 ? ??FILE_CHARSET = ‘utf-8‘ ? ? DEFAULT_CHARSET = ‘utf-8‘ ? ? 然后修改LANGUAGE_CODE = ‘zh-cn‘ 3、用记事...
分类:
其他好文 时间:
2014-07-25 00:06:54
阅读次数:
789
EqsTime Limit: 5000MSMemory Limit: 65536KTotal Submissions: 11865Accepted: 5811DescriptionConsider equations having the following form: a1x13+ a2x23+ ...
分类:
其他好文 时间:
2014-07-24 22:34:42
阅读次数:
166
On CRM opportunity form view, i added readonly="1" for probability field. When i saved, whatever the value of my probability, it's stored with NULL va...
分类:
其他好文 时间:
2014-07-24 22:02:32
阅读次数:
233
前端js代码function searchAll(){var contentStr = $('#contentStr_id').val();contentStr =encodeURI(contentStr); alert(contentStr); $('#tt').datagrid('options...
分类:
其他好文 时间:
2014-07-24 21:58:42
阅读次数:
225
0和#都是占位符,但在不同的地方,作用不一样0: 比实际数字的位数多,不足的地方用0补上。 new DecimalFormat("00.00").format(3.14) //结果:03.14 new DecimalFormat("0.000").format(3.14) //结果: 3.140 ....
分类:
其他好文 时间:
2014-07-24 21:53:32
阅读次数:
202
用我转载的上一篇文章Asp.net中把DataTable或DataGrid导出为Excel导出的文档,中文有乱码现象,其实要解决中文乱码很简单,设置一下字符集。如下://设置编码和附件格式curContext.Response.ContentType="application/vnd.ms-exce...
分类:
Web程序 时间:
2014-07-24 21:17:53
阅读次数:
206