vote up 3 vote down star

Is it possible to figure out the current ViewContext's VirtualPath eg

~/Views/Company/Create.aspx

flag

69% accept rate

2 Answers

vote up 2 vote down check

I think this is what you're after:

((WebFormView) ViewContext.View).ViewPath

Obviously this only works if your using the standard web form view engine (which based off the wording of your question, you are). I.e. the ViewContext.View returns an IView, which may not be a WebFormView if you're using a different view engine.

Edit: By the way, I have tested the above code and it definitely returns the path as a virtual path (and not an absolute or app relative path, like I initially assumed it might). I.e. it gives you a value like this:

~/Views/Company/Create.aspx
link|flag
This worked thank you :) – bleevo Jul 29 at 4:59
vote up -2 vote down

You can use this code to get the virtual path,

<%= HttpRuntime.AppDomainAppVirtualPath %>
link|flag

Your Answer

Get an OpenID
or

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