2013-10-03 85 views
1

所以我把這個表格放在這個表格的邊上,這個表格有超鏈接按鈕。該按鈕用於FAQ。我試圖做的是當超鏈接按鈕被點擊時,我想要一個小文本框,空瀏覽器,無論什麼可能是最簡單的方法。我的頁面正在啓動,其中顯示了我的文本,但它在我的屏幕左側打開。彈出窗口需要居中在屏幕上

繼承人什麼,我得到了編碼

<asp:LinkButton ID="lnkBttnPsswrdReset" runat="server" OnClientClick="openPopUp()">Password Reset Info</asp:LinkButton><br /> 

<%--function to open pop up window for password reset hyperlink button --%> 
<script type="text/javascript"> 
    function openPopUp() { 
     myWindow = window.open('', '', 'width=250,height=250') 
     myWindow.document.write("<p>Please contact the operator to reset yopur password after IT department business hours</p>") 
     myWindow 
     myWindow.focus() 
    } 
</script> 
+0

做下面的鏈接回答你的問題? http://stackoverflow.com/questions/4068373/center-a-popup-window-on-screen –

+0

我用盡那些和他們不是爲我工作 – KBriz

+0

好對不起他們的工作,但他們幾乎得到了在同一個點即時啓動屏幕,但不是真正的中心 – KBriz

回答

1

使用的Ajax comboBox .....很好地工作

1

你的問題類似於前一個問題,如下面的鏈接。

Center a popup window on screen?

複製和粘貼下面

接受的答案試試這個:

function popupwindow(url, title, w, h) { 
var left = (screen.width/2)-(w/2); 
var top = (screen.height/2)-(h/2); 
return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no,  menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left); 
} 
0

我建議你像AlertifyJs,這是在各方面好得多,不是一個討厭的彈出窗口。