Open Mulltiple Windows
-
hi all how to open multiple windows in asp.net.. pleas help i need to generate the same quotation for several partners like a,b,c,d... i am using this code in the save button ie.. how many records it inserts it should display the Quotaion or pop up the window... ClientScript.RegisterStartupScript(Me.GetType(), "Message", "<script>window.open('frmquotation.aspx?quot=" & ViewState("Order") & "&pid=" & partner.Text & "&Type=" & ddlLeadtype.SelectedItem.Text & "&custid=" & ViewState("CustIdCOrp") & " &sourceLead=" & ddlLeadSource.SelectedItem.Text & "&optprint=" & rdPrint.SelectedItem.Text & "','a' + new Date().getTime(),'resizable=1,scrollbars=yes,width=800,height=768')</script>", True) if there is any other way to display plz let me know..its very urrgent :(
-
hi all how to open multiple windows in asp.net.. pleas help i need to generate the same quotation for several partners like a,b,c,d... i am using this code in the save button ie.. how many records it inserts it should display the Quotaion or pop up the window... ClientScript.RegisterStartupScript(Me.GetType(), "Message", "<script>window.open('frmquotation.aspx?quot=" & ViewState("Order") & "&pid=" & partner.Text & "&Type=" & ddlLeadtype.SelectedItem.Text & "&custid=" & ViewState("CustIdCOrp") & " &sourceLead=" & ddlLeadSource.SelectedItem.Text & "&optprint=" & rdPrint.SelectedItem.Text & "','a' + new Date().getTime(),'resizable=1,scrollbars=yes,width=800,height=768')</script>", True) if there is any other way to display plz let me know..its very urrgent :(
Did you mean multiple windows or multiple steps in the opened child window? The first statement and subsequent clarifications of your post contradict to a good chunk.
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
hi all how to open multiple windows in asp.net.. pleas help i need to generate the same quotation for several partners like a,b,c,d... i am using this code in the save button ie.. how many records it inserts it should display the Quotaion or pop up the window... ClientScript.RegisterStartupScript(Me.GetType(), "Message", "<script>window.open('frmquotation.aspx?quot=" & ViewState("Order") & "&pid=" & partner.Text & "&Type=" & ddlLeadtype.SelectedItem.Text & "&custid=" & ViewState("CustIdCOrp") & " &sourceLead=" & ddlLeadSource.SelectedItem.Text & "&optprint=" & rdPrint.SelectedItem.Text & "','a' + new Date().getTime(),'resizable=1,scrollbars=yes,width=800,height=768')</script>", True) if there is any other way to display plz let me know..its very urrgent :(
window.open() is the only way to open multiple windows. no any other way to open them. you can use any extra tools for popup windows to display your recodrs which may be you can get from ajax toolkit.