Hi sir,
I am using UrlRewriter to rewrite url, below code snippets working fine for single page. As you can see page 'ViewPost.aspx' is being used to rewrite url i want to add one more page 'ViewPost2.aspx' how to achieve it.
webconfig file
<rewriter>
<rewrite url="(.+)-(.+).aspx" to="~/ViewPost.aspx?id=$2"/>
</rewriter>
constructing url here
<asp:HyperLink ID="hlTitle" runat="server" Text='<%#DataBinder.Eval(Container.DataItem,"sub")%>'
NavigateUrl='<%#GenerateURL(DataBinder.Eval(Container.DataItem,"sub"),DataBinder.Eval(Container.DataItem,"Id"))%>'></asp:HyperLink>
codebehind
public static string GenerateURL(object Title, object strId)
{
string strTitle = Title.ToString();
#region Generate SEO Friendly URL based on Title
//Trim Start and End Spaces.
strTitle = strTitle.Trim();
//Trim "-" Hyphen
strTitle = strTitle.Trim('-');
strTitle = strTitle.ToLower();
char[] chars = @"$%#@!*?;:~`+=()[]{}|\'<>,/^&"".".ToCharArray();
strTitle = strTitle.Replace("c#", "C-Sharp");
strTitle = strTitle.Replace("vb.net", "VB-Net");
strTitle = strTitle.Replace("asp.net", "Asp-Net");
//Replace . with - hyphen
strTitle = strTitle.Replace(".", "-");
//Replace Special-Characters
for (int i = 0; i < chars.Length; i++)
{
string strChar = chars.GetValue(i).ToString();
if (strTitle.Contains(strChar))
{
strTitle = strTitle.Replace(strChar, string.Empty);
}
}
//Replace all spaces with one "-" hyphen
strTitle = strTitle.Replace(" ", "-");
//Replace multiple "-" hyphen with single "-" hyphen.
strTitle = strTitle.Replace("--", "-");
strTitle = strTitle.Replace("---", "-");
strTitle = strTitle.Replace("----", "-");
strTitle = strTitle.Replace("-----", "-");
strTitle = strTitle.Replace("----", "-");
strTitle = strTitle.Replace("---", "-");
strTitle = strTitle.Replace("--", "-");
//Run the code again...
//Trim Start and End Spaces.
strTitle = strTitle.Trim();
//Trim "-" Hyphen
strTitle = strTitle.Trim('-');
#endregion
//Append ID at the end of SEO Friendly URL
//strTitle = "~/Label/" + strTitle + "-" + strId + ".aspx";
strTitle = strTitle + "-" + strId + ".aspx";
return strTitle;
}
sorce code taken from here:
http://dotnetguts.blogspot.ae/2008/07/url-rewriting-with-urlrewriternet.html
http://urlrewriter.net