Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Jul 20, 2010 07:35 AM by sjnaughton
Member
19 Points
163 Posts
Jul 19, 2010 07:26 PM|LINK
Hello I want to show .../products/insert.aspx as my default start page when users visite mypage.com/products.
Right now it's set to default.aspx.
Any idea?
Thank you
Startup Page Dataynamic Data
All-Star
26228 Points
4596 Posts
Jul 19, 2010 08:59 PM|LINK
Right Click on your Insert.aspx page and Select - Set As Start Up Page
27308 Points
5458 Posts
MVP
Jul 20, 2010 07:35 AM|LINK
With DD you will have to force a redirect to that page so I would comment ou the code in the Default.aspx.cs page and replace with:
var table = Global.DefaultModel.GetTable("Products"); Response.Redirect(table.GetActionPath(PageAction.Insert));
Hope this helps [:)]
Dynamic Data
donkaiser
Member
19 Points
163 Posts
Show insert.aspx as the start page
Jul 19, 2010 07:26 PM|LINK
Hello I want to show .../products/insert.aspx as my default start page when users visite mypage.com/products.
Right now it's set to default.aspx.
Any idea?
Thank you
Startup Page Dataynamic Data
karan@dotnet
All-Star
26228 Points
4596 Posts
Re: Show insert.aspx as the start page
Jul 19, 2010 08:59 PM|LINK
Right Click on your Insert.aspx page and Select - Set As Start Up Page
Karan
~ Blog ~
Remember To Mark The Post(s) That Helped You As The ANSWER
sjnaughton
All-Star
27308 Points
5458 Posts
MVP
Re: Show insert.aspx as the start page
Jul 20, 2010 07:35 AM|LINK
With DD you will have to force a redirect to that page so I would comment ou the code in the Default.aspx.cs page and replace with:
var table = Global.DefaultModel.GetTable("Products"); Response.Redirect(table.GetActionPath(PageAction.Insert));Hope this helps [:)]
Dynamic Data
Always seeking an elegant solution.