MVC form load calling both controller method and its overload method instead of calling on click methos ?...
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
|
show 1 more comment
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
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
|
show 1 more comment
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
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
c# asp.net-mvc asp.net-mvc-4 asp.net-mvc-3 model-view-controller
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
|
show 1 more comment
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
|
show 1 more comment
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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