Custom Filename for #Html.EditorForModel()? - asp.net

so I have the following code:
#model IEnumerable<My_School_Book.Models.Mark>
#{
ViewBag.Title = "Marks";
}
<div class="row-fluid">
<h1>Assignment Marks:</h1>
#using (Html.BeginForm("Marks", "Assignment", FormMethod.Post, new { #class = "form-horizontal" }))
{
<table class="table table-bordered">
<thead>
<tr>
<th>Student</th>
<th style="width: 50px;">Mark
</th>
<th style="width: 50px;">Total
</th>
<th style="width: 50px;">Weight</th>
</tr>
</thead>
<tbody>
#Html.EditorForModel()
</tbody>
</table>
<div class="form-actions">
<button type="submit" class="btn btn-primary"><i class="icon-checkmark"></i> Save</button>
<i class="icon-back"></i> Cancel
</div>
}
</div>
As you can see my Model being passed into the view is an IEnumerable of the Model Mark.
Now I have a EditorTemplate under the Views/Shared folder called Mark:
#model My_School_Book.Models.Mark
<tr>
<td>#Model.Student.FullName</td>
<td>
#Html.TextBoxFor(model => Model.Grade, new { #class = "span12", #style = "min-height: 20px;", #maxlength = "5" })
</td>
<td>
#Model.Assignment.Total
</td>
<td>#Model.Assignment.Weight</td>
</tr>
My question is, can I rename my EditorTemplate file from Mark to AssignmentMarks? I'd like it to be more specific instead of a generic name called Marks.
Edit:
Inside my MarkRepository.cs
public IEnumerable<Mark> GetAllByAssignmentID(Guid id)
{
return context.Marks.Where(m => m.AssignmentID == id);
}
Inside my AssignmentController.cs
public ActionResult Marks(Guid id)
{
IEnumerable<Mark> Marks = markRepository.GetAllByAssignmentID(id).ToList();
return View(Marks);
}
[HttpPost]
public ActionResult Marks(IEnumerable<Mark> viewModel)
{
if (ModelState.IsValid)
{
}
return View(viewModel);
}
Inside my Marks.cshtml
#Html.EditorForModel("Mark", "AssignmentMark")
Inside my AssignmentMark.cshtml
#model My_School_Book.Models.Mark
<tr>
<td>#Html.DisplayTextFor(model => model.Student.FullName)</td>
<td>#Html.TextBoxFor(model => model.Grade, new { #class = "span12" })</td>
<td>#Html.DisplayTextFor(model => model.Assignment.Total)</td>
<td>#Html.DisplayTextFor(model => model.Assignment.Weight)</td>
</tr>
The error I receive on my View is now:
System.Data.Entity.DynamicProxies.Assignment_7EDE7AD8477AB363802A036747CD8A8B259C6CD72DCEF587A2B0FBEDC7B2DCE1System.Data.Entity.DynamicProxies.Assignment_7EDE7AD8477AB363802A036747CD8A8B259C6CD72DCEF587A2B0FBEDC7B2DCE1System.Data.Entity.DynamicProxies.Assignment_7EDE7AD8477AB363802A036747CD8A8B259C6CD72DCEF587A2B0FBEDC7B2DCE1System.Data.Entity.DynamicProxies.Assignment_7EDE7AD8477AB363802A036747CD8A8B259C6CD72DCEF587A2B0FBEDC7B2DCE1

Rename your model class to be AssignmentMarks
Instead of #EditorForModel(), run the following:
#foreach(var mark in Model)
{
#EditorFor(m => m.Mark, "AssignmentMark")
}
Hope this will help you.

Related

How to call method on the Controller from view

First of all I'm a little new on this and I have a lot of questions but one of them is the next one.
Is there any way to call methods (without view) situated on the Controller from another view and send one parameter at the same time?
I've been trying to do it but I can't.
I have tried this:
#{
((HomeController)this.ViewContext.Controller).Method1();
}
but I get an error which says that namespace could not be found
the flow is: open the view->click on add button->select one row from other table->through coding, send the Id of the product to the method I need in order to find a product and insert it into my new table.
here you have some code.
First View
<div id="lista" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
#{Html.RenderAction("selectOrden", "Producto");}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
</div>
</div>
</div>
</div>
Controller
[HttpGet]
public ActionResult selectOrden()
{
try
{
client = new FireSharp.FirebaseClient(config);
FirebaseResponse response = client.Get("Producto");
dynamic data = JsonConvert.DeserializeObject<dynamic>(response.Body);
var list = new List<Producto>();
foreach (var item in data)
{
list.Add(JsonConvert.DeserializeObject<Producto>(((JProperty)item).Value.ToString()));
Debug.WriteLine(JsonConvert.DeserializeObject<Producto>(((JProperty)item).Value.ToString()).nombreProducto);
return View(list);
}
}
catch (Exception ex)
{
ModelState.AddModelError(string.Empty, ex.Message);
}
return View();
}
//Inserta registros de productos en las ordenes de compra
[HttpPost]
public void selectOrdena(string id)
{
client = new FireSharp.FirebaseClient(config);
FirebaseResponse responseProdu = client.Get("Producto/" + id);
Producto dataProdu = JsonConvert.DeserializeObject<Producto>(responseProdu.Body);
ViewBag.Soli = dataProdu;
Debug.WriteLine("Hello");
//return View(dataProdu);
}
Second View
#model IEnumerable<FirebaseMVCTestApp.Models.Producto>
#{
ViewBag.Title = "selectOrden";
Layout = null;
}
<h2>selectOrden</h2>
#using (Html.BeginForm("Save","ProductoController", FormMethod.Post))
{
<form method="post">
#Html.AntiForgeryToken()
#Html.ValidationSummary(true, "", new { #class = "text-danger" })
<table id="table_idxd" class="display">
<thead>
<tr>
<th>
Nombre del producto
</th>
<th>
Cantidad
</th>
<th>
Costo
</th>
<th>
Precio
</th>
<th>
Codigo
</th>
<th>Acción</th>
</tr>
</thead>
#{ try
{
foreach (var item in Model)
{
<tr>
<td>
#Html.EditorFor(model => item.nombreProducto, new { htmlAttributes = new { #class = "form-control" } })
</td>
<td>
#Html.EditorFor(modelItem => item.cantidad, new { htmlAttributes = new { #class = "form-control" } })
</td>
<td>
#Html.EditorFor(modelItem => item.costo, new { htmlAttributes = new { #class = "form-control" } })
</td>
<td>
#Html.EditorFor(modelItem => item.precio, new { htmlAttributes = new { #class = "form-control" } })
</td>
<td>
#Html.EditorFor(modelItem => item.codigo, new { htmlAttributes = new { #class = "form-control" } })
</td>
<td>
#Html.ActionLink("Agregar", "selectOrdena", new { id = item.idProducto })
<input type="submit" value="Save" class="btn btn-default" />
</td>
</tr>
}
}
catch (Exception ex)
{
}
}
</table>
</form>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
</div>
</div>
}
<div>
#Html.ActionLink("Back to List", "Index")
</div>
The method you provided is valid.
This is how you call an instance method on the Controller:
#{
((HomeController)this.ViewContext.Controller).Method1();
}
This is how you call a static method in any class:
#{
SomeClass.Method();
}
This will work assuming the method is public and visible to the view.But according to what you said, an error was reported:
that namespace could not be found
The reason may be that the project that references the assembly may have a different frame type from the assembly.You can check this post, it may be helpful to you:https://stackoverflow.com/questions/4764978/the-type-or-namespace-name-could-not-be-found
Ok I've checked all the other threads and I think it was going so far from my problem, but I have already solved it by adding this line on the second view
#using FirebaseMVCTestApp.Controllers
in that way the view could see the controller I needed.
I know that the question was a little newbbie but if I didn't ask I would probably never find the answer.
Thank you. :)

ASP.NET unable to search encrypted table

I have an encrypted database, I am encrypting it using this StringCipher done by CraigTP on this post.
However when I try to search my database I am unable to search using Decrypted values, Since every value i encrypt is different, encrypting the search value and trying to match it to the database is useless. Now I'm decrypting the list and trying to match the search value to this decrypted list, but I still can't get results to appear. However If I search for the encrypted value grabbed directly from the DB I do get the results. I've tried everything I can think of and I'm out of ideas.
Here is my index method:
public ViewResult Index(string sortOrder, string searchString)
{
ViewBag.CurrentSort = sortOrder;
ViewBag.NameSortParm = String.IsNullOrEmpty(sortOrder) ? "Username" : "";
ViewBag.CurrentSort = sortOrder;
var Users = from s in db.Users
select s;
foreach(User element in Users)
{
element.Username = StringCipher.Decrypt(element.Username.ToString());
element.Password = StringCipher.Decrypt(element.Password.ToString());
}
if (!String.IsNullOrEmpty(searchString))
{
Users = Users.Where(s => s.Username.Contains(searchString));
}
switch (sortOrder)
{
case "Username":
Users = Users.OrderByDescending(s => s.Username);
break;
}
return View(Users.ToList());
}
And here is my Index view:
#model IEnumerable<EncryptTest.Models.User>
#{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<p>
#Html.ActionLink("Create New", "Create")
</p>
#using (Html.BeginForm())
{
<p>
Find by name: #Html.TextBox("SearchString")
<input type="submit" value="Search" /></p>
}
<table class="table">
<tr>
<th>
#Html.ActionLink("Username", "Index", new { sortOrder = ViewBag.NameSortParm })
</th>
<th>
Password
</th>
<th></th>
</tr>
#foreach (var item in Model)
{
<tr>
<td>
#Html.DisplayFor(modelItem => item.Username)
</td>
<td>
#Html.DisplayFor(modelItem => item.Password)
</td>
<td>
#Html.ActionLink("Edit", "Edit", new { id = item.ID_User}) |
#Html.ActionLink("Details", "Details", new { id = item.ID_User }) |
#Html.ActionLink("Delete", "Delete", new { id = item.ID_User })
</td>
</tr>
}
</table>

How to Post correctly w/ List<Model> from the view to the controller? [duplicate]

I have a HTML table as below in my View:
<table id="tblCurrentYear">
<tr>
<td>Leave Type</td>
<td>Leave Taken</td>
<td>Leave Balance</td>
<td>Leave Total</td>
</tr>
#foreach (var item in Model.LeaveDetailsList)
{
<tr>
<td>#Html.TextBoxFor(m => item.LeaveType, new { width = "100" })</td>
<td>#Html.TextBoxFor(m => item.LeaveTaken, new { width = "100" })</td>
<td>#Html.TextBoxFor(m => item.LeaveBalance, new { width = "100" })</td>
<td>#Html.TextBoxFor(m => item.LeaveTotal, new { width = "100" })</td>
</tr>
}
</table>
I want to iterate through all the html table rows and insert the values in ADO.NET DataTable.
Simple speaking, converting HTML Table to ADO.NET DataTable.
How to extract values from HTML Table and insert into ADO.NET DataTable?
The view is based on the following model
public class LeaveBalanceViewModel
{
public LeaveBalanceViewModel()
{
this.EmployeeDetail = new EmployeeDetails();
this.LeaveBalanceDetail = new LeaveBalanceDetails();
this.LeaveDetailsList = new List<LeaveBalanceDetails>();
}
public EmployeeDetails EmployeeDetail { get; set; }
public LeaveBalanceDetails LeaveBalanceDetail { get; set; }
public List<LeaveBalanceDetails> LeaveDetailsList { get; set; }
}
In order to bind to a model on post back, the name attributes of the form controls must match the model properties. Your use of a foreach loop does not generate the correct name attributes. If you inspect the html you will see multiple instances of
<input type="text" name="item.LeaveType" .../>
but in order to bind to your model the controls would need to be
<input type="text" name="LeaveDetailsList[0].LeaveType" .../>
<input type="text" name="LeaveDetailsList[1].LeaveType" .../>
etc. The easiest way to think about this is to consider how you would access the value of a LeaveType property in C# code
var model = new LeaveBalanceViewModel();
// add some LeaveBalanceDetails instances to the LeaveDetailsList property, then access a value
var leaveType = model.LeaveDetailsList[0].LeaveType;
Since your POST method will have a parameter name (say model), just drop the prefix (model) and that's how the name attribute of the control must be. In order to do that you must use either a for loop (the collection must implement IList<T>)
for(int i = 0; i < Model.LeaveDetailsList.Count; i++)
{
#Html.TextBoxFor(m => m.LeaveDetailsList[i].LeaveType)
....
}
or use a custom EditorTemplate (the collection need only implement IEnumerable<T>)
In /Views/Shared/EditorTemplates/LeaveBalanceDetails.cshtml
#model yourAssembly.LeaveBalanceDetails
<tr>
<td>#Html.TextBoxFor(m => m.LeaveType)</td>
....
</tr>
and then in the main view (not in a loop)
<table>
.... // add headings (preferably in a thead element
<tbody>
#Html.EditorFor(m => m.LeaveDetailsList)
</tbody>
</table>
and finally, in the controller
public ActionResult Edit(LeaveBalanceViewModel model)
{
// iterate over model.LeaveDetailsList and save the items
}
With respect to your requirement, try this
jQuery(document).on("change", ".DDLChoices", function (e) {
var comma_ChoiceIds = '';
var comma_ChoicesText = '';
$('input[class="DDLChoices"]').each(function (e) {
if (this.checked) {
comma_ChoiceIds = comma_ChoiceIds + $(this).val() + ',';
comma_ChoicesText = comma_ChoicesText + $(this).parent('label').parent() + ',';
}
});
$('#ChoiceIds').val(comma_ChoiceIds);
$('#ChoiceText').val(comma_ChoicesText);
});
#using (Html.BeginForm("Actionname", "Controllername", FormMethod.Post, new { id = "frmChoices" }))
{
#Html.HiddenFor(m => m.ChoiceText, new { #id = "ChoiceText" })
#Html.HiddenFor(m => m.ChoiceIds, new { #id = "ChoiceIds" })
<div class="form-group">
<div>
<table>
<tr>
<th>Name</th>
<th>Selected</th>
</tr>
#foreach (var item in #Model.Choices)
{
<tr>
<td> <label>#item.ChoicesText</label> </td>
<td> <input class="DDLChoices" value="#item.ChoiceIds" type="checkbox" /></td>
</tr>
}
</table>
</div>
<input type="button" value="Submit" onclick="return ChoicesPoster.passChoices()"
</div>
}

Partial View not displaying

I don't know what is the reason but my partial view is not displaying, I have tried with other view but problem remains same. I am calling this Partial View using #Ajax.ActionLink, I have put debug points, so it clearly shows that it goes to controller method and successfully return Partial View but it is not displaying.
View(Here I am calling Controller Method):
<li class="nav-menu">#Ajax.ActionLink("Request for Change MobileNumber and EmailId", "ChangeMob", "Admin", new AjaxOptions { UpdateTargetId = "result" })</li>
Controller Method:
public ActionResult ChangeMob()
{
if (Request.IsAjaxRequest())
{
var model = new ChangeMob();
var db = new clubDataContext();
var list2 = (from s in db.tblChanges
select new ChangeMob()
{
id= s.Id,
oldno = s.Old_CNo,
newemail = s.New_Email,
oldemail = s.Old_Email,
mobileoremail = s.Mob_or_Email,
newno = s.New_CNo
}).ToList();
ViewBag.Request = list2;
return PartialView("ChangeMob", model);
}
else
return RedirectToAction("Index", "home");
}
Partial View:
#model IEnumerable<club.Models.ChangeMob>
<h2>Hello there!</h2>
<p>
#Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
<th>
#Html.DisplayNameFor(model => model.oldno)
</th>
<th>
#Html.DisplayNameFor(model => model.newno)
</th>
<th>
#Html.DisplayNameFor(model => model.oldemail)
</th>
<th>
#Html.DisplayNameFor(model => model.newemail)
</th>
<th>
#Html.DisplayNameFor(model => model.mobileoremail)
</th>
<th></th>
</tr>
#foreach (var item in ViewBag.Request)
{
<tr>
<td>
#item.oldno
</td>
<td>
#item.newno
</td>
<td>
#item.oldemail
</td>
<td>
#item.newemail
</td>
<td>
#item.mobileoremail
</td>
<td>
#Html.ActionLink("Edit", "Edit", new { id=item.id }) |
#Html.ActionLink("Details", "Details", new { id=item.id }) |
#Html.ActionLink("Delete", "Delete", new { id=item.id })
</td>
</tr>
}
</table>
I see one mistake in your code.
In ChangeMob Action you returns model of ChangeMob type but partial view has another type:
#model IEnumerable<club.Models.ChangeMob>
you should change it to
#model club.Models.ChangeMob
As for partial view displaying. Did you include "jquery.unobtrusive-ajax.min.js" library for using Ajax.ActionLink?
like this:
<script src="#Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>
Make your controler return type from public ActionResult ChangeMob() to public PartialViewResult ChangeMob() and check
And make sure that targetID "result" is not set to dispaly:none
Mark it as answered if it work .

How to retrieve form data and assign it to a text as a url on MVC 4

i would like to return below url from a search submit where id will be get from database.
So when a user search something by id it will search my database and display the result on my home view. then i want to transform my ID a clickable url which is this one:
http://myadress.com:8787/Handlers/DataExport.ashx?format=pdf&id=???&direction=0
Any idea how to do?
This is my home view:
<body>
<p>
#using (Html.BeginForm("Index", "Home", FormMethod.Get))
{
<b>SEARCH BY:</b> #Html.RadioButton("searchby", "ID", true) <text>ID</text>
#Html.RadioButton("searchby", "NAME") <text>NAME</text>
<br /><br />
#Html.TextBox("search") <input type="submit" value="SEARCH" />
}
</p>
<table>
<tr>
<th>
ID
</th>
<th>
NAME
</th>
<th>Actions</th>
</tr>
#if (Model.Count() == 0)
{
<tr>
<td colspan="2">NO DATA FOUND.</td>
</tr>
}
else
{
foreach (var item in Model)
{
<tr>
<td>
#Html.DisplayFor(modelItem => item.ID)
</td>
<td>
#Html.DisplayFor(modelItem => item.NAME)
</td>
<td>
#Html.ActionLink("Details", "Details", new { id = item.id })
</td>
</tr>
}
}
this is my controller:
public class HomeController : Controller
{
private mydbEntities db = new mydbEntities();
//
// GET: /Home/
public ActionResult Index(string searchBy, string search)
{
if (searchBy == "ID")
{
return View(db.mytable.Where(x => x.ID == search).ToList());
}
else (searchBy == "NAME")
{
return View(db.mytable.Where(x => x.NAME == search).ToList());
}
}
You could just create an anchor tag and substitute the id in the href attribute
your link text
you have to use jquery for this. something like
$('.btnSearch').on('click', function(){
$('.lnkSubmit').attr('href', '#Url.Action("Action", "Controller", new { id = "----" })'.replace("----", (returned id here));
});
this will replace the url of a link with class lnkSubmit and will include the id that you put in it. Let me know if you have any questions.
In my Blog application, this is how I implemented search functionality for searching posts.
Partial view for search:
#using (Html.BeginForm("Search", "Blog", FormMethod.Get, new {id = "search-form"}))
{
<input type="text" name="s" placeholder="Search">
<button type="submit">Go</button>
}
Search action in controller:
public ActionResult Search(string s)
{
var model = _dbPostRepository.GetPostsForSearch(s);
ViewBag.TotalPosts = _dbPostRepository.TotalSearchPosts(s);
return View("Posts");
}
Posts View:
#model FirstBlog.Core.Post
#if (#ViewBag.TotalPosts > 0)
{
foreach (var item in Model)
{
Html.RenderPartial("_PostTemplate", item);
}
}
else
{
<p>No posts found!</p>
}
_PostTemplate is the view for each post. Hope this would help.

Resources