iPodのサファリブラウザでasp.netアプリケーションをテストしています。ポップアップウィンドウを開くのに問題があります。いくつかのリンクボタンがあるグリッドビューがあります。これらのリンクボタンをクリックすると、ポップアップウィンドウが開きます。この問題の解決策はありますか?
function OpenQuestionWindow(Store, AuditDate, SectionId) {
var returnValue = window.showModalDialog("Questions.aspx?store=" + Store + "&auditDate=" + AuditDate + "§ion=" + SectionId, "", "dialogHeight:750px; dialogWidth:950px;center:yes;edge:raised; Scroll:Yes; ");
if (returnValue == true) {
__doPostBack('', '');
}
}