why these error is comming in crystal report in asp.net
The report you requested requires further information.
DSDiscount
Server name:
Database name:
User name:
Password:
Use Integrated Security
Here DsDiscount means Dataset of Discount.
Actually my Data base in App_Data .
In webconfig file Connection string like this:I no need to declare the username and password .
<add name="VRPL" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\VRPL.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" />
Loading
Lalit MPosted Nov 27, 2009, 2:35 AM
myReportDocument.SetDatabaseLogon(string username,string password);
OR
Rebuild your connection in the report.
Set the up the connection using an SQL connection and change it to an OLE DB (ADO) connection. Although if there is security on the db you might have to also enter that in or leave the sa password blank.