vote up 0 vote down star

in my route table I have this entry

routes.MapRoute(
            "myRoute",
            "route/{controller}/{action}/{id}/{start}/{end}",
            new { controller = "Home", action = "Index", id = "", start="", end="" }
        );

in my master page I have a line of code like so:

<%= Html.TextBox("foo", "bar") %>

If I access the page in the form of http://mysite.com/route/Home/Index/id/start/end the textbox renders OK with a value of "bar" However if I access the page using the default parameters http://mysite.com/route/ the textbox does not have a value! In the emitted HTML it shows up like so:

<input id="foo" type="text" value="" name="foo"/>

it didn't set the value to "bar"...is this a bug? or is this not allowed in mvc master pages?

flag

56% accept rate
It looks fine to me, I copied and pasted your code exactly and i end up with a text box that has "bar" in it. You might want to try restarting the app or VS? – NickLarsen Oct 28 at 18:15
Do you set any ViewData in the controller action before the view renders? – Mathias Fritsch Oct 28 at 20:35
I have some stuff in my ViewData collection before the view renders, but I can't even get this simple case of using a simple string to work – puffpio Oct 28 at 21:17
more info..my route table has this entry: routes.MapRoute( "myRoute", // Route name "route/{controller}/{action}/{id}/{start}/{end}", // URL with parameters new { controller = "Home", action = "Index", id = "", start="", end="" } // Parameter defaults ); If i am explicit about the url when I access the page (mysite.com/report/Home/Index/id/start/end) it will render the textbox ok. If i rely on the default paramters (myiste/report), the text box will not have a value – puffpio Oct 28 at 21:20

1 Answer

vote up 0 vote down

it should work fine

" <%= Html.TextBox("name", "Please enter your name...")%>

Output : < input id="name" name="name" type="text" value="Please enter your name..." />

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.