MVC form load calling both controller method and its overload method instead of calling on click methos ?...












0















i am saving data on click button but view when load first time entering to overload method ?



my view code is like,



@using (Html.BeginForm("ManageQuestion", "Questions", FormMethod.Post))
{
<input type="submit" value="Save" />
}


and my Controller is like,



public ActionResult ManageQuestion()
{
//List<SelectListItem> QuestionType = Survey();
//return View(QuestionType);
return View();
}

[HttpPost]
public ActionResult ManageQuestion(Question Objquest)
{

if (ModelState.IsValid)
{
SurveyAppEntities ObjEntity = new SurveyAppEntities();
string strDDLValue = Request.Form["DDlDemo"].ToString();
Objquest.QuestionType = strDDLValue;
ObjEntity.Questions.Add(Objquest);
ObjEntity.SaveChanges();
ViewData["error"] = "Question Saved successfully";
if (Objquest.ID > 0)
{
// ViewBag.Success = "Inserted";

}
ModelState.Clear();
}

return View();
}


}



I am thinking that it must call overload ManageQuestion method on button click but when view load first time it is entering in overload methos resulting in error.



I got one example from net having same scenario but overload method is not calling there on first form load ?



Hopes for your suggestion



Thanks










share|improve this question























  • Mark the other method with [HttpGet]

    – Ivaylo Stoev
    Nov 25 '18 at 11:56











  • i will make another method but how would i return same view from that new method ?

    – john
    Nov 25 '18 at 12:04











  • don't make another method, i mean mark the existing method with the attribute [HttpGet] so you will have two methods named "ManageQuestion" one will be used to render the view initially and the other to post the data and then rerender the view

    – Ivaylo Stoev
    Nov 25 '18 at 12:08











  • Yes you are right but some how i am getting after changing it to httpGet i am getting null reference exception on this line "string strDDLValue = Request.Form["DDlDemo"].ToString();"

    – john
    Nov 25 '18 at 12:24











  • i tried this code and it is not having issue which i mentioned in my post "aspsnippets.com/Articles/…"

    – john
    Nov 25 '18 at 12:35
















0















i am saving data on click button but view when load first time entering to overload method ?



my view code is like,



@using (Html.BeginForm("ManageQuestion", "Questions", FormMethod.Post))
{
<input type="submit" value="Save" />
}


and my Controller is like,



public ActionResult ManageQuestion()
{
//List<SelectListItem> QuestionType = Survey();
//return View(QuestionType);
return View();
}

[HttpPost]
public ActionResult ManageQuestion(Question Objquest)
{

if (ModelState.IsValid)
{
SurveyAppEntities ObjEntity = new SurveyAppEntities();
string strDDLValue = Request.Form["DDlDemo"].ToString();
Objquest.QuestionType = strDDLValue;
ObjEntity.Questions.Add(Objquest);
ObjEntity.SaveChanges();
ViewData["error"] = "Question Saved successfully";
if (Objquest.ID > 0)
{
// ViewBag.Success = "Inserted";

}
ModelState.Clear();
}

return View();
}


}



I am thinking that it must call overload ManageQuestion method on button click but when view load first time it is entering in overload methos resulting in error.



I got one example from net having same scenario but overload method is not calling there on first form load ?



Hopes for your suggestion



Thanks










share|improve this question























  • Mark the other method with [HttpGet]

    – Ivaylo Stoev
    Nov 25 '18 at 11:56











  • i will make another method but how would i return same view from that new method ?

    – john
    Nov 25 '18 at 12:04











  • don't make another method, i mean mark the existing method with the attribute [HttpGet] so you will have two methods named "ManageQuestion" one will be used to render the view initially and the other to post the data and then rerender the view

    – Ivaylo Stoev
    Nov 25 '18 at 12:08











  • Yes you are right but some how i am getting after changing it to httpGet i am getting null reference exception on this line "string strDDLValue = Request.Form["DDlDemo"].ToString();"

    – john
    Nov 25 '18 at 12:24











  • i tried this code and it is not having issue which i mentioned in my post "aspsnippets.com/Articles/…"

    – john
    Nov 25 '18 at 12:35














0












0








0








i am saving data on click button but view when load first time entering to overload method ?



my view code is like,



@using (Html.BeginForm("ManageQuestion", "Questions", FormMethod.Post))
{
<input type="submit" value="Save" />
}


and my Controller is like,



public ActionResult ManageQuestion()
{
//List<SelectListItem> QuestionType = Survey();
//return View(QuestionType);
return View();
}

[HttpPost]
public ActionResult ManageQuestion(Question Objquest)
{

if (ModelState.IsValid)
{
SurveyAppEntities ObjEntity = new SurveyAppEntities();
string strDDLValue = Request.Form["DDlDemo"].ToString();
Objquest.QuestionType = strDDLValue;
ObjEntity.Questions.Add(Objquest);
ObjEntity.SaveChanges();
ViewData["error"] = "Question Saved successfully";
if (Objquest.ID > 0)
{
// ViewBag.Success = "Inserted";

}
ModelState.Clear();
}

return View();
}


}



I am thinking that it must call overload ManageQuestion method on button click but when view load first time it is entering in overload methos resulting in error.



I got one example from net having same scenario but overload method is not calling there on first form load ?



Hopes for your suggestion



Thanks










share|improve this question














i am saving data on click button but view when load first time entering to overload method ?



my view code is like,



@using (Html.BeginForm("ManageQuestion", "Questions", FormMethod.Post))
{
<input type="submit" value="Save" />
}


and my Controller is like,



public ActionResult ManageQuestion()
{
//List<SelectListItem> QuestionType = Survey();
//return View(QuestionType);
return View();
}

[HttpPost]
public ActionResult ManageQuestion(Question Objquest)
{

if (ModelState.IsValid)
{
SurveyAppEntities ObjEntity = new SurveyAppEntities();
string strDDLValue = Request.Form["DDlDemo"].ToString();
Objquest.QuestionType = strDDLValue;
ObjEntity.Questions.Add(Objquest);
ObjEntity.SaveChanges();
ViewData["error"] = "Question Saved successfully";
if (Objquest.ID > 0)
{
// ViewBag.Success = "Inserted";

}
ModelState.Clear();
}

return View();
}


}



I am thinking that it must call overload ManageQuestion method on button click but when view load first time it is entering in overload methos resulting in error.



I got one example from net having same scenario but overload method is not calling there on first form load ?



Hopes for your suggestion



Thanks







c# asp.net-mvc asp.net-mvc-4 asp.net-mvc-3 model-view-controller






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 25 '18 at 11:39









johnjohn

306




306













  • Mark the other method with [HttpGet]

    – Ivaylo Stoev
    Nov 25 '18 at 11:56











  • i will make another method but how would i return same view from that new method ?

    – john
    Nov 25 '18 at 12:04











  • don't make another method, i mean mark the existing method with the attribute [HttpGet] so you will have two methods named "ManageQuestion" one will be used to render the view initially and the other to post the data and then rerender the view

    – Ivaylo Stoev
    Nov 25 '18 at 12:08











  • Yes you are right but some how i am getting after changing it to httpGet i am getting null reference exception on this line "string strDDLValue = Request.Form["DDlDemo"].ToString();"

    – john
    Nov 25 '18 at 12:24











  • i tried this code and it is not having issue which i mentioned in my post "aspsnippets.com/Articles/…"

    – john
    Nov 25 '18 at 12:35



















  • Mark the other method with [HttpGet]

    – Ivaylo Stoev
    Nov 25 '18 at 11:56











  • i will make another method but how would i return same view from that new method ?

    – john
    Nov 25 '18 at 12:04











  • don't make another method, i mean mark the existing method with the attribute [HttpGet] so you will have two methods named "ManageQuestion" one will be used to render the view initially and the other to post the data and then rerender the view

    – Ivaylo Stoev
    Nov 25 '18 at 12:08











  • Yes you are right but some how i am getting after changing it to httpGet i am getting null reference exception on this line "string strDDLValue = Request.Form["DDlDemo"].ToString();"

    – john
    Nov 25 '18 at 12:24











  • i tried this code and it is not having issue which i mentioned in my post "aspsnippets.com/Articles/…"

    – john
    Nov 25 '18 at 12:35

















Mark the other method with [HttpGet]

– Ivaylo Stoev
Nov 25 '18 at 11:56





Mark the other method with [HttpGet]

– Ivaylo Stoev
Nov 25 '18 at 11:56













i will make another method but how would i return same view from that new method ?

– john
Nov 25 '18 at 12:04





i will make another method but how would i return same view from that new method ?

– john
Nov 25 '18 at 12:04













don't make another method, i mean mark the existing method with the attribute [HttpGet] so you will have two methods named "ManageQuestion" one will be used to render the view initially and the other to post the data and then rerender the view

– Ivaylo Stoev
Nov 25 '18 at 12:08





don't make another method, i mean mark the existing method with the attribute [HttpGet] so you will have two methods named "ManageQuestion" one will be used to render the view initially and the other to post the data and then rerender the view

– Ivaylo Stoev
Nov 25 '18 at 12:08













Yes you are right but some how i am getting after changing it to httpGet i am getting null reference exception on this line "string strDDLValue = Request.Form["DDlDemo"].ToString();"

– john
Nov 25 '18 at 12:24





Yes you are right but some how i am getting after changing it to httpGet i am getting null reference exception on this line "string strDDLValue = Request.Form["DDlDemo"].ToString();"

– john
Nov 25 '18 at 12:24













i tried this code and it is not having issue which i mentioned in my post "aspsnippets.com/Articles/…"

– john
Nov 25 '18 at 12:35





i tried this code and it is not having issue which i mentioned in my post "aspsnippets.com/Articles/…"

– john
Nov 25 '18 at 12:35












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53467061%2fmvc-form-load-calling-both-controller-method-and-its-overload-method-instead-of%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53467061%2fmvc-form-load-calling-both-controller-method-and-its-overload-method-instead-of%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks