Click here to Skip to main content
15,900,378 members

Comments by himkha (Top 1 by date)

himkha 30-May-16 7:53am View    
Hey @
Rajesh_DotNet

What code did you wrote to get all values that needs to be populated under text boxes ?
Please let me know ?

<pre lang="C#">[HttpGet]
public ActionResult Action(int id)
{

//do the logic for taking the value for textbox
var result = new { Value = textboxValue };
return Json(result, JsonRequestBehavior.AllowGet);
}</pre>