ds.tables[0].rows[0][0] =
"<a href=" + """ + ds.Tables[0].Rows[0][2] + """ + ">"
I do not know whow to have a double quote within a double quote.
ds.Tables[0].Rows[0][2] has a value of
so, my final output should be :
<a href = "
Please help!
"<a href=" + """ + ds.Tables[0].Rows[0][2] + """ + ">"
I do not know whow to have a double quote within a double quote.
ds.Tables[0].Rows[0][2] has a value of
so, my final output should be :
<a href = "
Please help!