2012年2月17日
摘要:
http://www.uimaker.com/uimakerhtml/uidesign/uisoft/
阅读全文
posted @ 2012-02-17 16:53
张扬个性,敢为天下先
阅读(171)
推荐(0)
2012年2月1日
摘要:
在WEB前台加上:Src:控件的位置<%@ Register Src="UserContral/WebUserControl.ascx" TagName="Header" TagPrefix="uc" %>在页面中应用 <uc:Header ID="Header1" runat="server" />left.ascx文件代码:<%@ Control Language="C#" AutoEventWireup="true" C
阅读全文
posted @ 2012-02-01 10:31
张扬个性,敢为天下先
阅读(1201)
推荐(0)
2012年1月13日
摘要:
首先应用JS文件和样式文件 <script src="../JavaScript/ZTree/jquery-ztree-2.2.min.js" type="text/javascript"></script> <link href="../JavaScript/ZTree/zTreeStyle/zTreeIcons.css" rel="stylesheet" type="text/css" /> <link href="../JavaScrip
阅读全文
posted @ 2012-01-13 10:26
张扬个性,敢为天下先
阅读(5037)
推荐(2)
2012年1月12日
摘要:
int t=45;string s1 = t.ToString("F3");//表示转换后,小数点后面的数的个数或者可以这么写 string s1 = t.ToString("0.000");//string s2 = t.ToString("X3");//"D"相当于"X"表示转换后,输出的数字的个数string s3 = t.ToString("n");//千分符号 即: 4,100,000
阅读全文
posted @ 2012-01-12 11:32
张扬个性,敢为天下先
阅读(1048)
推荐(0)
2012年1月11日
摘要:
层的样式左漂浮;就可以达到在同一行不换行的效果 div { float: left; }
阅读全文
posted @ 2012-01-11 08:30
张扬个性,敢为天下先
阅读(418)
推荐(0)
2012年1月5日
摘要:
显示层$("#divGroup").slideDown("slow");隐藏层 $("#divTree").css({ display: "none" });
阅读全文
posted @ 2012-01-05 16:43
张扬个性,敢为天下先
阅读(4201)
推荐(0)
2011年12月28日
摘要:
DateTime beginMDate = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1);DateTime endMDate = beginMDate.AddMonths(1).AddDays(-1);
阅读全文
posted @ 2011-12-28 18:05
张扬个性,敢为天下先
阅读(502)
推荐(1)
2011年12月27日
摘要:
有时候前台只希望用户查看不希望修改,但是后台又需要获取的到这个信息如下方面:前台文本框设置ReadOnly <asp:TextBoxID="TextBox1"runat="server"ReadOnly="True"></asp:TextBox>后台用Request获取, stringText=Request.Form["TextBox1"].Trim();
阅读全文
posted @ 2011-12-27 10:13
张扬个性,敢为天下先
阅读(703)
推荐(0)
2011年12月20日
摘要:
JSdocument.getElementById('ID').属性="属性内容"; document.getElementById('txt1').readOnly="readonly"; 添加只读jq&("#ID").attr("属性","属性内容").NETthis.ID.Attributes.Add("onfocus","this.blur();");
阅读全文
posted @ 2011-12-20 09:31
张扬个性,敢为天下先
阅读(1059)
推荐(0)
2011年12月19日
摘要:
selectcasewhen 1>0 then '1'when 1<0 then '0'else '0'end记住最后要加end
阅读全文
posted @ 2011-12-19 11:48
张扬个性,敢为天下先
阅读(1684)
推荐(0)