Hello
I have designed a report in RDLC. The data comes from the database.
One of the fields has unicode values for Hindi text ("सफलता खुशी की क&#)
This is the hindi text for my name Shailesh Bist
This is not getting displayed in Hindi, it just displays the characters as shown above. Kindly guide how to get this working correctly.
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string strSQL = "select * from RAJ_AAJ_KA_VICHAR";
OleDbDataAdapter oAdap = new OleDbDataAdapter(strSQL, DB);
DataTable DT = new DataTable();
oAdap.Fill(DT);
RV.LocalReport.ReportPath = Server.MapPath("~") + "rajbhasha.rdlc";
RV.LocalReport.DataSources.Clear();
ReportDataSource DataSource = new ReportDataSource("DataSet1", DT);
RV.LocalReport.DataSources.Add(DataSource);
RV.Visible = true;
}
}
Thanks