2017-09-29 13 views
0

インターネットから多くのソリューションを試しましたが、修正できませんでした。 私はC#asp.netでrptファイルをロードするコードを持っています。それは正常に読み込まれ、その後、プロンプトのログオンをログオンし、私は正しくユーザー名とパスワードを入力したが、それはちょうど同じページを読み込んでいると、ポップアップは、ユーザー名とパスワードを求めている。 私は接続にODBCを使用しています。ここで screenshotCrystal Viewerはログオンプロンプトを表示し続けるC#Oracle

私のコードです:

public static void ReportLogin(ReportDocument crDoc, string Server, string Database, string UserID, string Password) 
    { 
     crConnectionInfo = new ConnectionInfo(); 
     crConnectionInfo.ServerName = Server; 
     crConnectionInfo.DatabaseName = Database; 
     crConnectionInfo.UserID = UserID; 
     crConnectionInfo.Password = Password; 
     crDatabase = crDoc.Database; 
     crTables = crDatabase.Tables; 
     foreach (CrystalDecisions.CrystalReports.Engine.Table crTable in crTables) 
     { 
      crTableLogonInfo = crTable.LogOnInfo; 
      crTableLogonInfo.ConnectionInfo = crConnectionInfo; 
      crTable.ApplyLogOnInfo(crTableLogonInfo); 
     } 
    } 

誰もが同じ問題を持っているし、解決策を持っている場合は、私に教えてください。

ありがとうございました。

よろしく、

ジョディ

答えて

1

コバジコメントbagian crTable.ApplyLogOnInfo(crTableLogonInfo)。

+0

sudah saya coba。 tapi dia terus munculポップアップログオンpromptnya。イスタ入力ユーザー名パスワードpasswordaa、読み込み中のログオンmunculログオンプロンプトlagi –

関連する問題