16 lines
474 B
C#
16 lines
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
public partial class Workspace : System.Web.UI.Page
|
|
{
|
|
//此页面为临时页面,为了兼容旧的大图标设置,因为FICG5的目录结构进行了调整
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
string iid = Request.Params["IID"];
|
|
Response.Redirect("fic/FIC.aspx?IID=" + iid);
|
|
}
|
|
} |