2020-8-26 糖果小宝
sql
Declare @s varchar(1000)
select @s=','+cast(id as varchar(20))+'' from M_Directory where id=5
while @@rowCount>0
--charindex:返回字符串中指定表达式的起始位置
select @s=@s+','+cast(id as ...
阅读全文>>
评论(0)
浏览(981)
2020-8-26 糖果小宝
net开发
IIS6 默认允许的附件最大上传大小为4M,在IIS7之前,当我们需要扩大这个上传限制时,
比如需要将允许上传的附件上限设置为50M,则可以在web.config中做如下配置:
<system.web>
<httpRuntime requestValidationMode="2.0" maxRequestLength="51200" executionTimeout="60" appRequestQueueLimit="100" />
</system.web>
在使用IIS7后,除了进...
阅读全文>>
评论(0)
浏览(815)
2020-8-26 糖果小宝
html
function txt_searchcolor() {
var keyword = $("#txt_name").val();
$(".txt_fileName").html(function () {
return $(this).text().replace(key...
阅读全文>>
评论(0)
浏览(903)
2020-8-26 糖果小宝
sql
WITH COMMENT_CTE(id,MainID,name,UpdateName,create_id,isdelete, tLevel)
AS(
SELECT id,MainID,name,UpdateName,create_id,isdelete,0 AS tLevel FROM M_Directory WHERE id =3
UNION ALL
SELECT c.id,c.MainID,c.name,ce.UpdateName,c.create_id,c.isdelete,ce.tLevel - 1 FROM M_Directory AS c INNER JOIN C...
阅读全文>>
评论(0)
浏览(901)
2020-8-26 糖果小宝
net开发
<script>
function GetRandomNum(Min,Max)
{
var Range = Max - Min;
var Rand = Math.random();
return(Min + Math.round(Rand * Range));
}
var num = GetRandomNum(1,10);  ...
阅读全文>>
评论(0)
浏览(878)
2020-8-25 糖果小宝
php开发
查找吸顶距离,即可
Sticky 粘性布局
阅读全文>>
评论(0)
浏览(878)
2020-8-25 糖果小宝
生活
可以查到备案地址
https://beian.miit.gov.cn/#/Integrated/recordQuery
阅读全文>>
评论(0)
浏览(1231)