disable some buttons in the preview from asp.net

Hi,

Is there a way to disable some buttons in the preview report window, from asp.net?

Thanks,

Comments

  • edited 7:12PM
    UP
  • edited 7:12PM
    dmazay wrote: »
    Hi,

    Is there a way to disable some buttons in the preview report window, from asp.net?

    Thanks,

    ShowToolbar="False" ShowFirstButton="False" ShowPdfExport="False" ShowCsvExport="False" ShowExports="False" ShowLastButton="False" ShowNextButton="False" ShowOdsExport="False" ShowPageNumber="False" ... ...
  • edited 7:12PM
    plz give me example.

    so as i use next code
        
    using (Report report = new Report()){
            report.Load(path);
            report.Dictionary.Connections[0].ConnectionString = "DATA SOURCE=" + ConfigurationManager.AppSettings.Get("TNSName").ToString() + ";USER ID=" + Session["DBUSER"] + ";PASSWORD=" + Session["DBPASS"];
            report.SetParameterValue("ID", ddNumList.Text);              
            report.Prepare();
    }
    

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.