Questions tagged as 'asp.net-mvc'

2
answers

How to make room in the text of the dimly created checkboxlist

I'm trying to give a space between the square of the checkboxlist and the text, but it's not working, I followed the code. <div class="form-group"> <asp:Label ID="Label2" Text="" runat="server" CssClass="col-sm-2 control...
asked by 16.09.2015 / 13:30
1
answer

Problem when posting a site iis 7

I need to publish a site that is in asp.net mvc and when I publish and change the files in the existing folder in iis 6, the changes I made to the project do not appear when I open the site through iis. I have a folder inside Models that has a r...
asked by 30.06.2015 / 16:14
1
answer

Text editor for email formatting

I need to create a page for creating and formatting emails. Which text editor is most reliable to do this? I say this because some e-mail viewers are very limited and do not interpret some HTML tags.     
asked by 30.06.2015 / 16:39
2
answers

Get the value of a form that has a list

Are you okay? I am new, I know I am asking a lot of questions, but I am having some doubts and I can not find an answer, I am trying to capture the event of a button in asp.net mvc using razor, I am with the following button: <input type="b...
asked by 29.06.2015 / 22:41
1
answer

Progressbar when requesting to download a file with FileResult

How can I display a progressbar while the server processes the return of a FileResult? I tried to perform the operation with Ajax, but it is not possible to download a file via ajax without redirecting it (using window.location.href ) t...
asked by 18.06.2015 / 15:43
1
answer

Return value from bank to textbox Asp.net MVC

How do I return a value from a bank column sql to textbox in asp.net mvc ? I created the textbox, I created a property inside a class. <label> @Html.DisplayNameFor(model => model.IRPJ) : @Html.TextBo...
asked by 11.08.2015 / 20:31
2
answers

How to resize images before upload using C # asp.net

I am learning .net mvc 4 and I would like to know if there are any good and simple libraries, to resize images before uploading, I researched google and only found complex functions with resizing calculations done in the hand. Since this is a ve...
asked by 11.06.2015 / 19:16
1
answer

Problem loading data with Entity Framework using Include

I'm using the Entity Framework with MySql on my system and I need to do a specific query that includes a list of a Model ( ApplicationUser ), in this list each returned object has in its properties another Model . That is, each...
asked by 06.06.2015 / 01:40
1
answer

SQL database for multiple users [closed]

Well, I have a question. I'm developing a web application that will serve more than one user, however each user has different data recorded in the database, and this volume will be great since the system is for sales management. I would like...
asked by 03.06.2015 / 19:47
1
answer

How to call controller action?

I have the following code: function confirmaExclusao() { var decisao = confirm("Deseja excluir permanentemente esse item?"); if(decisao == true) { //Chamar a action para excluir } else { //Aqui não vai f...
asked by 04.06.2015 / 18:52