I am using asp.net mvc3 and the jquery dialog to open a partial view in the main view
here is my structure ..
partialview 1
<input type="button" onclick="function1();">
partial view 2
<form method="post"> //some elements @Html.RenderPartial("partialview1"); </form>
view 1
<script src="myscript.js" /> <script src="jquery.js"/> //some element <div> load partialview 2 as jquery dialogue </div>
myscript.js
function function1() {
This is just an overview of my application.
now in the structure above, if I click the button in partialview1 , I get this error : Microsoft JScript runtime error: member not found.
Braincoder
source share