This is a migrated thread and some comments may be shown as answers.

URL Rewritting Rule for RadPageView

0 Answers 71 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Sushobhit
Top achievements
Rank 2
Sushobhit asked on 19 Oct 2011, 01:20 PM
Hi all 

I have a page that have many RadPageView and  we select The page according to the  Request.QueryString["AppID"].ToString(); but in the URL it show the  /Demo.aspx?AppID=SchoolProject and when we applying the URL rewrite rule for that i need to  Like my URL as  Following /SchoolProject
 This is the following code
 Demo.aspx

  <telerik:RadPageView ID="RadPageView1" runat="server">.
</telerik:RadPageView>
  <telerik:RadPageView ID="RadPageView2" runat="server">
</telerik:RadPageView>
Demo.aspx.cs
 SelctedAppID = Request.QueryString["AppID"].ToString();
                    if (SelctedAppID == "SchoolProject")
                    {
                        RadTabStrip1.SelectedIndex = 1;
                        RadMultiPage1.SelectedIndex = 1;
                    }
URL is  /Demo.aspx?AppID=SchoolProject but i like /Demo.aspx/SchoolProject



No answers yet. Maybe you can help?

Tags
General Discussions
Asked by
Sushobhit
Top achievements
Rank 2
Share this question
or