摘要:
1.普通下载: //下载文件的路径 string path=Server.MapPath("广告.jpg"); //下载文件的名称 string filename = "广告.jpg"; System.IO.FileInfo toDownload = new System.IO.FileInfo(path); Response.Clear(); if (System.IO.Path.GetExtension(filename) == ".jpg") ...{ R... 阅读全文
摘要:
Shutdown命令简介: 用法: shutdown [/i | /l | /s | /r | /a | /p | /h | /e] [/f] [/m //computer][/t xxx][/d [p:]xx:yy [/c "comment"]] 没有参数 显示帮助。这与键入 /? 是一样的 /? 显示帮助。这与不键入任何选项是一样的 /i 显示图形用户界面(GUI)。 这必须是第一个选项 /l 注销。这不能与 /m 或 /d 选项一起使用 /s 关闭计算机 /r 关闭并重启动计算机 /a 放弃系统关闭。 这只能在超时过程中使用 /p 关闭本地计算机,没有超时或警告。 这 阅读全文
摘要:
snow255 250 250 #fffafa ghostwhite248 248 255 #f8f8ff whitesmoke245 245 245 #f5f5f5 gainsboro220 220 220 #dcdcdc floralwhite255 250 240 #fffaf0 oldlace253 245 230 #fdf5e6 linen250 240 230 #faf0e6 antiquewhite250 235 215 #faebd7 papayawhip255 239 213 #ffefd5 blanchedalmond255 235 205 #ffebcd bisque25 阅读全文
摘要:
CheckCode.aspx页面其实什么也不用写<%@ Page Language="C#" CodeFile="CheckCode.aspx.cs" Inherits="ValidateCode" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/ 阅读全文
摘要:
网站增加设为首页,加入收藏夹功能。(ie) <!--[if IE]> <a href=# onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.cnblogs.com/52net/');"><font size="2">设为首页</font></a> | <a href="javascript:win 阅读全文
摘要:
GridView鼠标移动背景变色,在RowDataBound事件中添加如下代码: protected void GridView2_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes.Add("onmouseover", "javascript:c=this.style.backgroundColor;this.style.background=... 阅读全文
摘要:
固定表头:第一步:在程序中添加css代码,既可以保存为单独的文件,也可以在页面中引用。Css代码如下:.Fixed{position:relative;table-layout:fixed;z-index:10;top:expression(this.offsetParent.scrollTop);}.Fixed th{ text-overflow:ellipsis; overflow:hidden; white-space:nowrap; padding:2px;}第二步:在##.aspx.cs文件后台Page_Load中引用Css代码(也可以在##.aspx文件的head标签中引用,这里不 阅读全文
摘要:
Abs(number)取得数值的绝对值。Asc(String)取得字符串表达式的第一个字符ASCII码。Atn(number)取得一个角度的反正切值。CallByName(object,procname,usecalltype,[args()])执行一个对象的方法、设定或传回对象的属性。CBool(expression)转换表达式为Boolean型态。CByte(expression)转换表达式为Byte型态。CChar(expression)转换表达式为字符型态。CDate(expression)转换表达式为Date型态。CDbl(expression)转换表达式为Double型态。CDec 阅读全文
摘要:
一、网页颜色原理和象征意义 我们所有网页上颜色,在HTML下看到的是以颜色英文单词或者十六进制的表示方法(如#000000表示为黑色)。不同的颜色有着不同的含义,给人各种丰富的感觉和联想。红色代表热情、活泼、热闹、温暖、幸福、吉祥、奔放、喜悦、庄严;橙色代表光明、华丽、兴奋、甜蜜、快乐;黄色代表明朗、愉快、高贵、希望、富有、灿烂、活泼;黑色代表崇高、坚实、严肃、刚健、粗莽、夜晚、沉着;白色代表纯洁、纯真、朴素、神圣、明快、简单、洁净;蓝色代表深远、永恒、沉静、理智、诚实、寒冷、天空、清爽、科技;绿色代表新鲜、平静、和平、柔和、安逸、青春、植物、生命、生机;灰色代表忧郁、消极、谦虚、平凡、沉默、 阅读全文
摘要:
用户输入金额,自动实现金额的千分位分割。代码如下:<asp:TextBox ID="txtApp_Pcd_Value" runat="server" Width="85px" onkeyup="this.value=comdify(this)"></asp:TextBox>元<script language="javascript" type="text/javascript"> //金额千分位自动分位 function comdify(t 阅读全文
摘要:
代码具体如下:asp.net 上传图片并作处理(生成缩略图、在图片上增加文字水印、在图片上生成图片水印),经过测试!方法类:upFileClass.csusing System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlContro 阅读全文
摘要:
以下是函数具体说明,可以直接引用。/// <summary> /// 此方法用于确认用户输入的不是恶意信息 /// </summary> /// <param name="text">用户输入信息</param> /// <param name="maxLength">输入的最大长度</param> public static string InputText(string text, int maxLength) { text = text.Trim(); if (string.I 阅读全文
摘要:
引用命名空间using System.IO;//引入命名空间此方法用于删除指定路径的文件夹,如果含有文件夹则一并删除。 /// <summary> /// 此方法用于删除文件夹 /// </summary> /// <param name="dir">文件路径</param> public void DeleteFolder(string dir) { if (Directory.Exists(dir)) //如果存在这个文件夹删除之 { foreach (string d in Directory.GetFileSystem 阅读全文
摘要:
第一步:将CSS主要代码封装进单独文件(方便重复利用).HomeCon{ border:border:1px solid dimgray; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr= #284775, EndColorStr=#cccccc);}其中GradientType设置为0表示垂直渐变(从上到下);设置为1则表示水平渐变(从左到右)。StartColorStr表示渐变开始颜色EndColorStr表示渐变结束颜色第二步:在要应用的地方引用CSS即可。(略) 阅读全文
摘要:
在ASP.NET2.0站点根目录下,只要存在App_Offline.htm文件,那么所有对.aspx的请求都将转向App_Offline.htm。而且浏览器的地址栏显示的是所请求的.aspx的URL。这样当我们的站点需要维护时,只要把App_Offline.htm拷贝到站点根目录下即可。假如你有个网站里面有很多网页,如果网站要紧急进入维护,你不需要修改代码只要将这个文件发布到服务器即可。 阅读全文
摘要:
按钮式: <input name="pclog" type="button" value="GO" onClick="location.href='http://www.w3school.com.cn/'"> 链接式:<a href="javascript:history.go(-1)">返回上一步</a> 开新窗口: <a href="javascript:" onClick="window.open( 阅读全文
摘要:
第一步:以下是核心代码,在页面引用或进行封装都可。<script language="javascript" type="text/javascript"> function textLimitCheck(thisArea, maxLength, SpanId) { if (thisArea.value.length > maxLength) { thisArea.value = thisArea.value.substring(0, maxLength); thisArea.focus(); } /*回写span的值,当前填写文字*/ 阅读全文
摘要:
方法一:<input type=button value=刷新 onclick="history.go(0)">方法二:<input type=button value=刷新 onclick="location.reload()">方法三:<input type=button value=刷新 onclick="location=location">方法四:<input type=button value=刷新 onclick="window.navigate(location)&q 阅读全文
摘要:
代码如下,请根据情况作适当修改<script language="javascript">function delit(){ result="确认要删除?同时会删除相关的信息!" if (confirm(result)) { window.location.href="Default.aspx" } else { window.location.href="Default2.aspx" }}</script><a href="javascript:delit()"& 阅读全文