Questions tagged as 'asp.net'

0
answers

Application in Mvc5 asp.net system of schools [closed]

I have an application in mvc 5 asp.net and I would like to generate an alphanumeric number automatically eJ: abcd-001-2018 and have it registered in the database ...     
asked by 29.06.2018 / 16:21
0
answers

How to recover Friendly URL in ASP.Net

I had problems with AJAX in my project (I did not take it directly), to fix it I had to modify this line settings.AutoRedirectMode = RedirectMode.Permanent; within my ~/App_Start/RouteConfig.cs . Replace it with the following lin...
asked by 14.05.2018 / 05:14
2
answers

How to put a button inside a table

I have the following code: <div class="table-responsive"> <table id="Grid" data-toggle="table" data-url="@Url.Action("Metodo", "Controller")" data-method="post" data-pagination="tr...
asked by 16.04.2018 / 20:54
1
answer

How to redirect from one webform to another outside of my current folder?

If I'm redirecting to a page like this: project / webform2.apx But I want you to direct me from the webform2 outside the project folder, how do I do it?     
asked by 09.05.2018 / 20:22
0
answers

Why do I get the error of Could not load type 'Administrators.Global'?

I want to run my application but I can not because it flags me the following error:    Line 1: <% @ Application Codebehind="Global.asax.cs"   Inherits="Administrators.Global" Language="C #"% > with the following text:    An error...
asked by 10.05.2018 / 19:36
0
answers

Error trying to read gmail emails from c #

I'm trying to read the emails in the Google inbox, the point is that when I try to execute the code it generates an error in this line using (Pop3Client client = new Pop3Client()) The error generated is as follows: {"Error en la inicializ...
asked by 13.12.2018 / 21:37
0
answers

Problems with for loop when rendering input checkbox

I have the following problem when rendering some input checkbox , I go through a loop for with a model type List<> as in the following example: @for (int i = 0; i < Model.MiModeloList.Count(); i++) { if (Model....
asked by 04.06.2018 / 17:22
0
answers

Problem with DevExpress Treelist

My problem is that my treelist does not do anything after I expand the nodes. This is my view @{ ViewBag.Title = "EstructuraFinanciera"; } @if (Session["username"] != null) { <text> Bienvenido @Session["username"].ToString()...
asked by 14.03.2018 / 17:04
1
answer

What does the Request.Form ["codproduct"] do on asp.net?

I saw the following code on the internet: Request.Form ["codproduct"] but I do not know what the function of Request.Form is and the co-product it represents?, I would appreciate your explanation and its use.     
asked by 13.03.2018 / 22:10
1
answer

Show image saved in database

I save my image in the sql server database, but I do not know how I can show it in another view in asp.net core. the image that I keep, I do it in the following way: public async Task<IActionResult> Registro(UsuarioRegister user,...
asked by 12.03.2018 / 05:59