C#宣告ViewStatus的方式

2009年10月6日 星期二


public string gotourl
{
get
{
return this.ViewState["gotourl"] as string;
}
set
{
this.ViewState["gotourl"] = value;
}
}

Read more...

XSLT 裡特殊符號的表示

&:
&

空格:
 

Read more...

子視窗關閉時,去更新母視窗的頁面

關閉視窗的動作是: 在body裡加入onunload 屬性



<body onunload="window.opener.location.reload();">

Read more...