Frage : XML Akte in global.asax lesen, um Seitenanforderung umzuadressieren, Seite zu beheben

Ich habe eine xml Akte hergestellt, die ein Eitelkeits-URL abd das umadressierenurl hat. Ich wünsche globales asax diese Akte lesen, um die Seitenanforderung zur passenden Seite umzuadressieren. SO zum Beispiel wenn jemand eintippt, haben http://www.company.com/pro ducts, das http://www.company.com/sit eproducts/products.aspx umadressiert wird. unter ist irgendein Code I wrote.




/products/nitylink>
/siteproducts/products.aspx? WT.MC_ID=23edirectlink>



global.asax

public leeres Application_BeginRequest ()
{
DataTable dtblVanityLinks = Null;
SchnurstrThisUrl = -null;
SchnurstrSelect = -null;
DataRow [] arrMatches = Null;
SchnurstrRedirectLink = -null;

dtblVanityLinks = GetVanityLinks ();
strThisUrl = Request.Path.ToLower ();
wenn (Request.ApplicationPath! = „/") {
strThisUrl = strThisUrl.Remove (0, Request.ApplicationPath.Length);
}
strSelect = „vanitylink='" + strThisUrl + „'“;
arrMatches = dtblVanityLinks.Select (strSelect, „vanitylink“);
wenn (arrMatches.Length > 0) {
strRedirectLink = arrMatches [0] [„redirectlink“];
strRedirectLink = Request.ApplicationPath + strRedirectLink;
Context.RewritePath (strRedirectLink) ;
}
}

public DataTable GetVanityLinks ()
{
DatensatzdstVanityLinks = -null;
DataTable dtblVanityLinks = Null;

dtblVanityLinks = Context.Cache („vanitylinks");
wenn (dtblVanityLinks == Null) {
dstVanityLinks = neuer Datensatz ();
dstVanityLinks.ReadXml (Server.MapPath („VanityURLRedirects.xml“));
dtblVanityLinks = dstVanityLinks.Tables (0);
Context.Cache.Insert („vanitylinks“, dtblVanityLinks, neues CacheDependency (Server.MapPath („VanityURLRedirects.xml“) ));
}
RückholdtblVanityLinks;
}


Any Ideen auf, wie man dieses erhält, um zu arbeiten ist groß appreciated.

Antwort : XML Akte in global.asax lesen, um Seitenanforderung umzuadressieren, Seite zu beheben

Sie können eins der vor-errichteten Module anstelle vom Schreiben benutzen es sich, da es langwierig und fehleranfällig ist.

http://urlrewriter.net/

Der modernisierte Code bekannt gegeben auch unten.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
6:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
    leeres Application_BeginRequest (Gegenstandabsender, EventArgs e)
    {
        RewriteUrl ();
    }

    allgemeines DataTable GetVanityLinks ()
    {
        DatensatzdstVanityLinks = -null;
        DataTable dtblVanityLinks = Null;

        //dtblVanityLinks = Context.Cache („vanitylinks“);

        wenn (dtblVanityLinks == Null)
        {
            dstVanityLinks = neuer Datensatz ();
            dstVanityLinks.ReadXml (Server.MapPath („VanityURLRedirects.xml“));
            dtblVanityLinks = dstVanityLinks.Tables [0];
            Context.Cache.Insert („vanitylinks“, dtblVanityLinks, neues CacheDependency (Server.MapPath („VanityURLRedirects.xml“)));
        }

        RückholdtblVanityLinks;
    }

    Öffentlichkeit leeres RewriteUrl ()
    {
        DataTable dtblVanityLinks = Null;
        SchnurstrThisUrl = -null;
        SchnurstrSelect = -null;
        DataRow [] arrMatches = Null;
        SchnurstrRedirectLink = -null;

        dtblVanityLinks = GetVanityLinks ();

        strThisUrl = Request.Path.ToLower ();

        wenn (Request.ApplicationPath! = „/")
        {
            strThisUrl = strThisUrl.Remove (0, Request.ApplicationPath.Length);
        }

        strSelect = „vanitylink = „“ + strThisUrl + „“ „;
        arrMatches = dtblVanityLinks.Select (strSelect, „vanitylink“);
        wenn (arrMatches.Length > 0)
        {
            strRedirectLink = arrMatches [0] [„redirectlink“] .ToString (); ;
            strRedirectLink = Request.ApplicationPath + strRedirectLink;

            Context.RewritePath (strRedirectLink);
        }
    }
Weitere Lösungen  
 
programming4us programming4us