会员
周边
新闻
博问
闪存
众包
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
拾雨
博客园
首页
博问
闪存
新随笔
订阅
管理
2020年11月5日
c# web上传文件时大小限制问题
摘要: 1.webconfig: system.web节点下的<httpRuntime maxRequestLength="102400" executionTimeout="3600" requestValidationMode="2.0" />会限制文件大小; 2.IIS设置: 在IIS的applica
阅读全文
posted @ 2020-11-05 11:14 拾雨
阅读(593)
评论(0)
推荐(0)
2019年12月9日
select * from 后有多个表的使用方法(已知一个表的结构为xxx 怎样通过select语句把他变成以下结构)
摘要: 已知一个表的结构为: 怎样通过select语句把他变成以下结构: 首先,添加数据 USE [DBTEST]GO/****** Object: Table [dbo].[SDUDENTS] Script Date: 2019/12/9 10:33:41 ******/SET ANSI_NULLS ON
阅读全文
posted @ 2019-12-09 11:00 拾雨
阅读(906)
评论(0)
推荐(0)
2019年8月23日
js打开新窗口后调用父界面的JS方法
摘要: 1.window.open(); 2.调用父界面方法:window.opener.xxx();
阅读全文
posted @ 2019-08-23 08:46 拾雨
阅读(591)
评论(0)
推荐(0)
2019年8月20日
bootstrap fileInput控件实现多文件拖拽上传
摘要: 1.界面: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>文件列表维护</title> <link href="../../Bootstrap/css/bootstrap
阅读全文
posted @ 2019-08-20 09:48 拾雨
阅读(2103)
评论(0)
推荐(0)
input标签限制输入为数字
摘要: 给input标签加上属性oninput = "value=value.replace(/[^\d]/g,'')"
阅读全文
posted @ 2019-08-20 09:45 拾雨
阅读(3063)
评论(0)
推荐(1)
2019年8月9日
Jquery获取数据
摘要: 1.$(".ascxZljsDc").find("[datafield=IS_WB]").is(":checked") ? "Y" : "N";//在ascxZljsDc中查找datafield属性为IS_WB的多选框是否被选中; 2.$(".ascxZljsDc").find("[datafiel
阅读全文
posted @ 2019-08-09 13:58 拾雨
阅读(537)
评论(0)
推荐(0)