2 out of 5 rated this helpful - Rate this topic

ReportServerCredentials.NetworkCredentials Property 

Gets or sets the network credentials used for authentication with the report server.

Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in microsoft.reportviewer.winforms.dll)

public ICredentials NetworkCredentials { get; set; }
/** @property */
public final ICredentials get_NetworkCredentials ()

/** @property */
public void set_NetworkCredentials (ICredentials value)

public final function get NetworkCredentials () : ICredentials

public function set NetworkCredentials (value : ICredentials)

Property Value

A NetworkCredentials object containing the network credentials used for authentication with the report server.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;

namespace ReportServerCredentialsSample
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            reportViewer1.ProcessingMode =
 Microsoft.Reporting.WinForms.ProcessingMode.Remote;

            reportViewer1.ServerReport.ReportPath = 
@"/Adventureworks Sample Reports/Company Sales";

            NetworkCredential myCred = new 
NetworkCredential("UserName", "Password", "DomainName");
            reportViewer1.ServerReport.ReportServerCredentials.NetworkCredentials =
       myCred;
       
            reportViewer1.RefreshReport();
        }
    }
}
Did you find this helpful?
(1500 characters remaining)