@Html.Raw(ViewData["name"].ToString())
30 July 2014
How to read html code from viewbag in mvc3 view
@Html.Raw(ViewBag.data)
(or)
@Html.Raw((String)ViewBag.Data)
(or)
@Html.Raw((String)ViewBag.Data)
28 July 2014
How to set first row color to gridview in c#
protected void gv1_RowDataBound(object sender, GridViewRowEventArgs
e)
{
try
{
if (e.Row.RowIndex == 0)
{
e.Row.BackColor = System.Drawing.Color.YellowGreen;
}
}
catch (Exception
ex)
{
lbl_error.Visible = true;
lbl_error.ForeColor = System.Drawing.Color.Red;
lbl_error.Text = ex.Message;
}
}
8 July 2014
How to check if a value exists in a datatable in c#
bool exists = dt.Select().ToList().Exists(row => row["row_name"].ToString() == "value");
Subscribe to:
Posts (Atom)