Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i m using default route of mvc2 like {controller}/{action}/{id}. i want to access that id field in view. how can i do that without using tempData and ViewData. if i have url like http://server-name/home/edit/14 i need value 14 in aspx view

any help is highly appreciated
regards
Adeel

share|improve this question

2 Answers

up vote 16 down vote accepted

You can access route data using the ViewContext property:

<%= ViewContext.RouteData.Values["controller"] %>
share|improve this answer

This question may help...

http://stackoverflow.com/questions/151963/asp-net-mvc-how-do-i-get-virtual-url-for-the-current-controller-view

Curious, why don't you want to use ViewData/ViewModel?

share|improve this answer
Thanks Daz for quick reply. infact i don't like ViewData approach and use it only when i have no other options. ViewModel is a sophisticated approach however but i have more than 80 pages and i m not in favor of creating viewmodel for a value that can be plucked from route value dictionary unless someone tells me its dangerous regards – Muhammad Adeel Zahid Jul 2 '10 at 5:25
1  
If you have 80+ pages wanting to use the Id field I'd recommend a base model populated off and overriden OnActionExecuted in a custom base controller. stackoverflow.com/questions/2751225/… – Daz Lewis Jul 2 '10 at 7:38
thanks daz i believe that's a great idea. i will consider it when i get back on monday. have nice weekend regards – Muhammad Adeel Zahid Jul 3 '10 at 6:04
hi daz can u plz refer some example of base model being populated in onActionexecuted. i really have no idea how to do it regards – Muhammad Adeel Zahid Jul 6 '10 at 11:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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