create multilanguage support software using c#
I want to build software that will have to support both Bangla & English. I mean to say all the controls (textbox,label,combo box etc) will be supporting both languages dynamically. Database input/retrieval will also be done in both languages.
How could I do this??
Regards,
Shomen Deb
Answers (3)
2
I found the Solution:
Finf the Report web config in the below path :
C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVER\Reporting Services\ReportManager\web .config
Replace or add below line: to set admin credential for all users to access the report.
<authentication mode="Windows" /> // Authentication mode to be set to windows<identity impersonate="true " userName="UserName" password="Password"/> // identity impersonate to be set to true and User name & Password of the SQL Server administrator should be added.