asp.net使用masterPage超链接更改语言

本文关键字:语言 超链接 masterPage net 使用 asp | 更新日期: 2023-09-27 18:20:04

假设我有一个带有以下超链接的子页面

http://localhost:7621/PDWv1.0.4/ProductList.aspx?categoryID=2

ProductList.aspx的页面加载如下(Page_Load部分)

if (!Page.IsPostBack)
    {
        l_categoryParseId = Request.QueryString["categoryID"];
        if (l_categoryParseId == null || l_categoryParseId.Trim() == null ||
            l_categoryParseId == "" || l_categoryParseId.Trim() == "")
        {
            l_productlist = l_access.getProductList(-1, lang);
        }
        else
        {
            int categoryID = Int32.Parse(l_categoryParseId.ToString());
            l_productlist = l_access.getProductList(categoryID, lang);
        }
        for (int i = 0; i < l_productlist.Rows.Count; i++)
        {
            String path = "http://www.newrising.com.hk";
            String httpPath = path + l_productlist.Rows[i]["productPhoto"].ToString();
            l_productlist.Rows[i]["productPhoto"] = httpPath;
        }
        listViewProductList.DataSource = l_productlist;
        listViewProductList.DataBind();
       // GridViewProductList.DataSource = l_productlist;
        //GridViewProductList.PageSize = 10;
        //GridViewProductList.AllowPaging = true;
        //GridViewProductList.RowCommand += new GridViewCommandEventHandler(GridViewProductList_ItemCommand);
        //GridViewProductList.DataBind();   
    } 

主页的超链接会改变语言:

MasterPage.aspx

     <asp:HyperLink ID="linkChi" runat="Server"                           
                       ImageUrl="images/chinese.png"  />
                    <asp:HyperLink ID="linkEng" runat="Server"                           
                        ImageUrl="images/english.png" />

MasterPage.aspx。cs

    linkChi.NavigateUrl = "?currentculture=zh-hk";
linkEng.NavigateUrl = "?currentculture=en-us";

每当我按linkChi或linkEng切换语言时,就会显示页面为空白。。

你能告诉我如何确保categoryID的值可以保留在页面回发下吗?

asp.net使用masterPage超链接更改语言

我不知道你的问题是什么,但如果你在回邮后问如何保持价值,你总是可以使用

ViewState["categoryID"] = categoryID;