C# code?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public bool flag = false;
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
string myUrl = Request.QueryString.Get("doc").ToString();
if (myUrl == "1")
{
Recommend(1); //File
flag = true;
}
if (myUrl=="2"){
New(1); //doc
flag = false;