I have implemented a modal dialog for IE6 and above using the following javascript code snippet.
window.showModalDialog(
'SelectUser.aspx',
null,
'status:no;dialogWidth:500px;dialogHeight:220px;dialogHide:true;help:no;
scroll:yes;toolbar:no;title:no;resizable:yes;location:no;menubar:no;'
);
Within the modal dialog, there is a grid displayed allowing users to make selections. The grid includes paging functionality, however, clicking on any of the pager links (next, previous, first, last page number) triggers a page index change event which then posts the page back and displays the result in a new IE window. I am seeking advice on how to resolve this issue.