Hi,
I have written the code for display popup window using javascript in button onclient click event.
And I want to pass parameters to that popup page because there are some search parameters i need to pass those to popup page and display the results in popup page.
Please anybody help me how to pass parameters to popup window using javascript.
Thanks in Advance
Pavani
I have written the code for display popup window using javascript in button onclient click event.
Code:
<asp:Button ID="Button1" runat="server" Style="position: static" OnClientClick="openwindow()"
Text="Execute"/>
<script type="text/javascript">
function openwindow()
{
window.open("AssignedTickets.aspx",'window','width=630,height=620,background=silver,menubar=no, resizable=no')
}
</script>
Please anybody help me how to pass parameters to popup window using javascript.
Thanks in Advance
Pavani
Comment