Editing a report

You can edit a report by passing security token, report ID and design=1 to ReportPortal/Proxy.aspx page. You can set the Security Token mode by going to Admin > Settings > Security > check "Enable URL Integration" and select "Security Token" mode. Proxy.aspx supports three Security Token modes:

  1. HTTP Get - Token is passed via URL.
  2. HTTP Post - Token is passed via hidden variable.
  3. Cookie - Token is passed via cookie. The most secure option.

You can get the Security Token by using this SQL:

exec GetSecurityToken @SecurityLevel=1

Assuming you are using HTTP Get Security Token mode, once you have the Token you can pass it along with the report ID to Proxy.aspx page:

http://localhost/ReportPortal/Proxy.aspx?design=1&reportId=1569&token=0C73FD8C-DA59-4881-8B58-2370273DF26D



ReportList.aspx:




Code behind for ReportList.aspx:

VB.NET | C#