I have 2 .cshtml files 1)Index.cshtml in Home folder of the Views 2)Create.cshtml file in Testing folder of Views
--Index.cshtml
<div id="body" align="center">
<section class="featured">
<div class="content-wrapper">
<hgroup class="title">
<h1>Testing controller!</h1>
</hgroup>
</div>
</section>
<section class="content-wrapper main-content clear-fix">
<p>
test View : <a href="~/Views/Testing/Create.cshtml">Click Here!</a>
</p>
</section>
</div>
Now in Index.cshtml in the a href , I want to get to Create.cshtml. How can I do that? The above code give "resource not found error".
Thanks R