I don't know what is the problem :/
<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet"/>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script>
// var $ = jQuery.noConflict(true);
$(function () {
$("#dialog-1").dialog({
autoOpen: false,
});
$("#opener").click(function () {
var dlgwnd = $("#dialog-1").dialog("open");
//Add the below code and Postback will occur fine with out any problem
dlgwnd.parent().appendTo(jQuery("form:first"));
});
});
</script>
<div id="dialog-1" title="Add new Database">
Database name: <asp:TextBox ID="name" runat=&q ...
Go to the complete details ...