HOw to remove SSRS section to ask credentials

痴心易碎 提交于 2019-12-13 06:27:45

问题


How to remove this prompt when viewing SSRS report in ASP.net Can we pass these as two parameters?


回答1:


The answer would depend on what kind of data provider you have. Assuming this is an MS SQL data provider:

  • Go to the SSRS Report Manager, find your data source and open its properties.

  • Then, depending on the authentification method set up in your SQL server and the database, set the appropriate parameters:

    "(o) Credentials stored securely in the report server" - if your server/database require the authorization and you want to provide the user name and password

    "[x] Use as Windows credentials when connecting to the data source" - check this checkbox if your server/database configured for windows authentification, otherwise leave it unchecked.

    "( ) Windows integrated security" - select this option if you'd like to use the current windows credentials of the report user

    "( ) Credentials are not required" - in case if your data provider and data source don't require the authorization (which is unlikely though)

Hope it helps.


Best regards,

Alexey

www.kudinov.ru



来源:https://stackoverflow.com/questions/21623518/how-to-remove-ssrs-section-to-ask-credentials

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!