摘要: 1 using System; 2 class A 3 { 4 public A() 5 { 6 PrintFields(); 7 } 8 public virtual void PrintFields(){} 9 }10 class B:A11 {12 int x=1;13 int y;14 public B()15 {16 y=-1;17 }18 public override void PrintFields()19 {20 Console.WriteLine("x={0},y={1}",x,y);21 }当使用new B()创建B的实例时,产生什么输出?虽然未证实, 阅读全文
posted @ 2012-07-02 16:52 Seasons1987 阅读(159) 评论(0) 推荐(0) 编辑
摘要: Request.UrlReferrer可以获取客户端上次请求的url的有关信息。这样我们就可以通过这个属性返回到“上一页”,示例如下1. 首先在Page_load中获得并储存该信息 1 Page_load(object obj,EventArgs e) 2 { 3 if(!IsPostBack) 4 { 5 if(Request.UrlReferrer!=null) 6 { 7 ViewState["UrlReferrer"]=Request.UrlReferrer.ToString(); 8 } 9 ... 阅读全文
posted @ 2012-07-02 16:41 Seasons1987 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 先贴个HTML生成的源码出来:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>一个表格例子</title><style>th{ background-image: 阅读全文
posted @ 2012-07-02 15:48 Seasons1987 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 1、以前经常用到的一个表格边框样式技巧(把表格的背景色设为黑色或其它颜色,然后又把单元格设为白色或其它的网页背景色),如下图:图一 1px的表格(颜色可自己选)代码如下: 1 <table width="600" border="0" cellpadding="0" cellspacing="1" bgcolor="#FF0000"> 2 <tr> 3 <td width="200" bgcolor="#FFFFFF"> 阅读全文
posted @ 2012-07-02 14:08 Seasons1987 阅读(25669) 评论(0) 推荐(0) 编辑