Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

asp.net mvc hide div from controller

    public ActionResult Index()
    {  
        // div "mudetails" should not apper
        return View(false);
    }

    public ActionResult Index(string textbox)
    {
       // div "mudetails" should apper
       return View(true);
    }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #mvc #hide #div #controller
ADD COMMENT
Topic
Name
5+8 =