Good afternoon, I'm implementing an infinite list in asp net mvc and I have some doubts about what is the best way to do this.
I implemented using partial view, making a request via ajax and return this partial view and give an append to my html...
I have a form on a page, sometimes users can double-click the button to submit the form ...
The form is a
@using (Ajax.BeginForm(...))
{
}
How can I prevent this from happening?
I'm developing with MVC, and I have the view list
[...]
var columns = new WebGridColumn[] {
grid.Column("Id"),
grid.Column("Descricao"),
grid.Column("UsuarioModificacao"),
grid.Column("DataModificacao"),...
I'm trying to send an object to controller , using ajax .
The object goes to the controller with Json , but only recognizes the values of the get, not the post.
$.ajax({
type: "POST",
url: "@Url.Action("Adi...
I have a CSS file containing the following code.
.texto{
Color: Red;
}
I have the HTML file with these tags :
<html>
<body>
<span class="texto">TEXTO 1<span>
<span class="texto">TEXTO 2<span>
<sp...
I have a SqlServer 2008 base where all users can connect to it via Windows domain, this works correctly via SQL Management Studio.
I'm doing a C # Application in MVC, and wanted it when the user accessed the site, I could get that login and p...
Recently, I developed a project that had some drastic changes in its design, mainly on the side of css and images. In this, accessing it on some machines, I verified that to view your new design it was necessary to clear the cache (ctrl + f5). H...
What could be wrong with this example?
I can not do this:
var pessoa = new Pessoa
(
PessoaId = 1,
Nome = "teste teste",
twitter = "@teste"
);
Error message:
'Name' does not exis...