问题描述
怎么在c#中,在webform1中点击一个button,弹出webform2,在url那里设置只能跳转,不能在webform1存在的情况下弹出webform2只知道一个form.show()语句,但是貌似不能用在webform上?
解决方案
解决方案二:
在Web页面中点击相关按钮弹出新窗口protectedvoidPage_Load(objectsender,EventArgse){OpenWebFormSize("Add.aspx",250,230,10,20);}//打开指定大小的新窗体//<paramname="url">地址</param>//<paramname="width">宽</param>//<paramname="heigth">高</param>//<paramname="top">头位置</param>//<paramname="left">左位置</param>publicstaticvoidOpenWebFormSize(stringurl,intwidth,intheigth,inttop,intleft){stringjs=@"<Scriptlanguage='JavaScript'>window.open('"+url+@"','','height="+heigth+",width="+width+",top="+top+",left="+left+",location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no,directories=no');</Script>";HttpContext.Current.Response.Write(js);}
解决方案三:
你这是在用webbrowser控件?
解决方案四:
解决方案五:
楼主是用的APS.NET还是Windowsform程序?如果是WindowsForm程序,恐怕做不到啊。