this is dialog open function and i am calling it from page behind.
Code:
function OpenDialog(url) {
$('#searchDialog').dialog({
autoOpen: false,
width: 900,
height: 600,
modal: true,
open: function () {
$(this).load(url);
}
});
$('#searchDialog').dialog('open');
return false;
}
Comment