When i click submit button all values will saved on database,and the text box fields get cleared, when i use refresh the submit action will repeat and it will stores already exiting same values.How to solve this problem....
当我单击提交按钮时,所有值都将保存在数据库中,文本框字段将被清除,当我使用刷新时,提交操作将重复,它将存储已经退出相同的值。如何解决此问题....
My code is
我的代码是
[HttpPost]
public ActionResult ReceiptMaster(Receipt model, string command)
{
Receipt Receipt = new Models.Receipt();
ViewData["RE"] = model.Recepit_NO;
ViewData["PAYMODE"] = model.Pay_Mode;
ViewData["Credit"] = model.Credited;
ViewData["CustName"] = model.Cust_Name;
ViewData["Cust_ID"] = model.Cust_Id;
if (command == "Sumbit")
{
int Id = 0;
if (model.Pay_Mode == "C")
{
model.ChequeNo = "";
model.Cheque_Date = ("1/1/1753 12:00:00 AM");
model.Bank_Name = "";
model.Bank_Address = "";
}
if (ModelState.IsValid)
{
Id = Receipt.SaveReceipt(model.Id, model.Cust_Id, model.Pay_Amount, model.Pay_Mode, model.Bank_Name, model.Bank_Address, model.ChequeNo, model.Cheque_Date, model.Credited, model.Recepit_NO);
if (Id > 0)
{
/*RECEPIT NUMBER INCREMENT*/
string y = model.Recepit_NO;
int i = Convert.ToInt32(y.Substring(2));
i = i + 1;
string re = "RE" + i;
model.Recepit_NO = re;
ViewData["RE"] = re;
/*END RECEPIT NUMBER*/
ViewData["Success"] = "Product was saved successfully.";
ViewData["ControlView"] = 1;
ViewData["Success"] = "Product was saved successfully.";
ViewData["ControlView"] = 1;
ViewData["Cust_ID"] = "";
ViewData["Pay_mode"] = "C";
ViewData["Pay_Amount"] = "";
model.Pay_Amount= "";
model.Cheque_Date = "";
model.ChequeNo = "";
model.Bank_Name = "";
model.Bank_Address = "";
//ObservableCollection<Receipt> ReceiptList = new ObservableCollection<Receipt>();
model.ReceiptList = Receipt.GetReceiptList();// model.ReceiptList is your model property
ViewData["Count"] = model.ReceiptList.Count;
return View(model.ReceiptList);
}
Thanks in advance..
提前致谢..
1 个解决方案
#1
2
Instead of return View(...)
, do return RedirectToAction(...)
. That way you can refresh the page as many times as you like.
而不是返回View(...),请返回RedirectToAction(...)。这样,您可以根据需要多次刷新页面。
#1
2
Instead of return View(...)
, do return RedirectToAction(...)
. That way you can refresh the page as many times as you like.
而不是返回View(...),请返回RedirectToAction(...)。这样,您可以根据需要多次刷新页面。