New to asp.net
-
Hi dear As we use code Dim DLG As New Form DLG.Showdialog() while working with multiple forms using vb.net.. Please advise me what would be the coding for asp.net while working with multiple forms. regards adil
m.adil.farooq mcs & acca adil-farooq@maktoob.com
-
Hi dear As we use code Dim DLG As New Form DLG.Showdialog() while working with multiple forms using vb.net.. Please advise me what would be the coding for asp.net while working with multiple forms. regards adil
m.adil.farooq mcs & acca adil-farooq@maktoob.com
You can not work with multiple forms in ASP.NET. You only response to one page request at a time. If you want to open another web page in a separate window, you either use the target property of the anchor tag:
<a href="AnotherPage.aspx" target="_blank">open</a>
Or you use Javascript:window.open('AnotherPage.aspx', '_blank');
--- Year happy = new Year(2007);