i am facing some problem while passing parameter to crystal report? it is asking for the password of
- by Gaurav Sharma
protected void Page_Load(object sender, EventArgs e)
{
ConnectionInfo myConnectionInfo = new ConnectionInfo();
myConnectionInfo.UserID = "sa";
myConnectionInfo.Password = "********";
setDBLOGONforREPORT(myConnectionInfo);
//When i don't write this code it does not ask for the passowrd
//but doesn't take…