Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function Count_number() {
- console.log('aa');
- $.ajax({
- type: "GET",
- url: "/Dogovor/Count_number",
- datatype: "Json",
- data: { },
- success: function (response) {
- $("#modAddBrDogovor").val(response);
- }
- });
- };
- public ActionResult Count_number()
- {
- db.Configuration.ProxyCreationEnabled = false;
- int? result1 = db.Dogovori.Count();
- if (result1 == 0)
- {
- result1 = 1;
- }
- result1 = result1 + 1;
- return Json(result1, JsonRequestBehavior.AllowGet);
- }
Advertisement
Add Comment
Please, Sign In to add comment