I am developing MVC application and am testing it now.
I am trying to insert <test> in the Database for address field. As it contains anguler brackets it's giving an error. For that I use the below code in controller. 
[HttpPost]
public ActionResult Create(Employee employee)
{
    if (ModelState.IsValid)
    {
        employee.Address.Replace("<", "<").Replace(">", ">");
        db.Employees.Add(employee);
        db.SaveChanges();
        return RedirectToAction("Index");
    }
    ViewBag.ReportsToId = new SelectList(db.Employees, "Id", "FirstName", employee.ReportsToId);
    return View(employee);
}
But cursor didn't come to this code. Where to write replace code?
Before cursor comes to that code, it's giving an error: 
A potentially dangerous Request.Form value was detected from the client (Address =
"<test>").
 
     
     
     
     
    