摘要: 一、1、取字符串的前i个字符(1)string str1=str.Substring(0,i);(2)string str1=str.Remove(i,str.Length-i);2、去掉字符串的前i个字符string str1=str.Remove(0,i);string str1=str.SubString(i);3、从右边开始取i个字符:string str1=str.SubString(str.Length-i);string str1=str.Remove(0,str.Length-i);4、从右边开始去掉i个字符:string str1=str.Substring(0,str.Le 阅读全文
posted @ 2012-06-28 16:50 微笑点燃希望 阅读(263386) 评论(1) 推荐(13) 编辑
摘要: 一、下载文件string str = Request.QueryString["D_Url"].ToString(); //虚拟文件路径string str1 = str.Remove(0, str.LastIndexOf("/") + 1);string filePath=“~/UserFiles/”;filePath=System.IO.Path.Combine(filePath,str1); //将文件的物理路径和文件名称合到一块组合成完整的完整文件路径 Response.Clear(); Response.ContentType = " 阅读全文
posted @ 2012-06-28 16:34 微笑点燃希望 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 一、DropDownList绑定(自己做了测试验证没问题)namespace NUCTechnologyPark{ public partial class CeShi : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { BindMenu(); } } public void BindMenu() { ListItem list = new ListItem(); list.Text = "请选择新闻类别"; list.Value = 阅读全文
posted @ 2012-06-28 16:00 微笑点燃希望 阅读(1040) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using NUCTechnologyPark.UIControl;using System.Data;using NUCTechnologyParkBLL;namespace NUCTechnologyPark.UserControl{ public partial class Head : BaseUserControl { p 阅读全文
posted @ 2012-06-28 15:08 微笑点燃希望 阅读(997) 评论(0) 推荐(0) 编辑
摘要: 一、background-position定位背景图片1、 可以通过背景定位属性来定义背景图片的位置:background-position,使用背景定位的属性值有下面几种,如果不使用,默认位置是从页面左上角0位置开始:(1)background-position:<percentage>使用百分点定位,0% 0%是指图片左上角与页面左上角对齐;如果是100% 100%,则表示图片右下角与页面右下角对齐。两个百分数用空格分开。<html><head><style type="text/css">body{ background-image 阅读全文
posted @ 2012-06-28 11:57 微笑点燃希望 阅读(1294) 评论(0) 推荐(1) 编辑
摘要: 一、Marquee详解1、Marquee经常用到的两个事件onMouseOut="this.start()";用来设置鼠标移除出区域时继续滚动;onMouseOver=“this.stop()”;用来设置鼠标移入该区域时停止滚动.2、Marquee向左滚动(缺陷不能实现无缝滚动)<marguee scrollAmount=3 width=900 style="color:#FF0000;font-size:12px; align="texttop" height="14">第二期网上开店免费培训课程将在经七纬一济 阅读全文
posted @ 2012-06-28 09:58 微笑点燃希望 阅读(24214) 评论(0) 推荐(0) 编辑
font=white