asp.NET C#
scl512
茫茫中
展开
-
asp.net程序上传空间的一些问题
1.空间必须支持.net并且版本要对应。2.web.config必须放在主目录下,放在子目录的方法我还没尝试过。有了会在这里更新。3.如果有提示Microsoft.ReportViewer 这个里面的文件缺少的话 就是项目下没有添加个BIN文件把C:/Program Files/Microsoft Visual Studio 8/ReportViewer 这里面的3个Dll文原创 2009-09-04 22:47:00 · 301 阅读 · 0 评论 -
CSS层样式 图片效果
图片CSS样式.imgborder{ filter:shadow(color=gray,direction=90);/*使用滤镜*/}图片可能会阴影在内测而无法显示出来可以使用下面代码style="filter:progid:DXImageTransform.Microsoft.Shadow(color=#666666, Direction=135, Streng原创 2009-09-10 20:59:00 · 672 阅读 · 0 评论 -
CSS层样式自学笔记1
CSS样式定义h1{ color:#CC0000; (属性:属性值)background-color:#00FF00;text-align:center; /*每个属性记得用“;”分开*/}你好在网页中直接使用H1标签即可使用原来H1字号和加粗在加上这个样式前景色和背景色以及剧中.B{ (css样式类定义)/*共用类*/color:#FF0000;bac原创 2009-09-10 08:51:00 · 350 阅读 · 0 评论 -
C# ASP.NET 获取脚本语句并用文本的方式显示出来
protected void Button6_Click(object sender, EventArgs e) { this.Label11.Text = HtmlEncode(this.TextBox3.Text); } protected static string HtmlEncode(string the) {原创 2009-09-21 22:45:00 · 447 阅读 · 0 评论 -
C#日期
DateTime bday; TimeSpan xcha; DateTime now = DateTime.Now; string dd, hh, mm, ss; try { bday = DateTime.Parse(this.TextBox2.Text); xcha = now.S原创 2009-09-21 20:21:00 · 379 阅读 · 0 评论