here i want to set the value of <%=(dsSubject.Tables[0].Rows[j]('Subject'))%> in a column but it is shown as it is in output so how to get its value, please help me out.
Query
Response.Write("<%=(dsSubject.Tables[0].Rows[j]('Subject'))%> ");
here i want to set the value of <%=(dsSubject.Tables[0].Rows[j]('Subject'))%> in a column but it is shown as it is in output so how to get its value, please help me out.
here i want to set the value of <%=(dsSubject.Tables[0].Rows[j]('Subject'))%> in a column but it is shown as it is in output so how to get its value, please help me out.
Iftikar HussainPosted Aug 22, 2013, 11:58 PM
Try like this
either like this
Response.Write("
or
// this need to be use for better performance
Response.Write(String.Format("
Regards,
Iftikar
Jignesh TrivediPosted Aug 22, 2013, 10:51 PM
try...
Response.Write("
hope this will help you.