asp.net
2 TopicsEmbedding Report with Power BI Report Server and external parameters
Hi, I am embedding a report (saved on our Power BI Report Server) with an ASP .NET application. Here is the piece of code that embeds the report on page: page .aspx <iframe id="frame1" scrolling="auto" runat="server" width="1000px;" height="600px"></iframe> .cs code protected void Page_Load(object sender, EventArgs e) { this.frame1.src="http://myserver/ReportsPBI/powerbi/Reports/test_param?rs:embed=true"; } I am facing a problem about report parameters: what I need is the possibility to extract, in the same report, different portions of data based on a external parameter passed in the URL. To be more accurate, I need to show to different users just the portions of data that they can see (the source database has an application authentication). How can I implement this feature in the .pbix project? And how can I pass the parameter through the URL? Is it possible with Report Server on-premises or this feature is not supported? Thanks in advanceSolved2.3KViews0likes3Comments