How to open a pop
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
I am using c# asp.net and i have a user's file webform and i need to open other webform or pop up to select user, how to do that ?
Hi there, try with js function: window.open(...) << >>
-
I am using c# asp.net and i have a user's file webform and i need to open other webform or pop up to select user, how to do that ?
if u r using linkbutton or any other control then controlname.attributes.add("onclick","Javascript:OpenPopup('Give URl Name Here')"); function Openpopup(Url) { winObj=window.open(Url,"winDetails","menu=0,scrollbars=1,noresize,toolbar=0,width=380,height=360,left=10,top=10"); winObj.focus(); winobj=null; } Chintala Kiran