本文介绍了在同一浏览器的新选项卡中打开Crystal Report的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 限时删除!! 我是Crystal报道的新手。这是我用来在新窗口中打开水晶报告的代码 string url = ./Reports/ReportQuotationDetails.aspx?ID = + IndexID.ToString(); ScriptManager.RegisterClientScriptBlock(Page,Page.GetType(), NewWindow, window.open(' + url + ','_ blank','height = 600,width = 900,status = no,toolbar = no,menubar = no,location = no,scrollbars = no,resizable = no, titlebar = no');, true ); 但我希望 知道如何 打开 Crystal Report 在同一浏览器中的新标签页。我怎么能这样做? 解决方案 I am new to Crystal reports. This is my code I already use to open crystal report in a new windowstring url = " ./Reports/ReportQuotationDetails.aspx?ID=" + IndexID.ToString();ScriptManager.RegisterClientScriptBlock(Page, Page.GetType(), "NewWindow", "window.open('" + url + "','_blank','height=600,width=900,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,titlebar=no' );", true);But I want to know how to open Crystal Report in a new tab within the same browser. How can I do that? 解决方案 这篇关于在同一浏览器的新选项卡中打开Crystal Report的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 1403页,肝出来的..
09-06 20:16