I'm doing a project in ASP.NET MVC + IIS and I realized that when I made a request to a page with a long read in the database Entity Framework ), if I open another window and try to access another page of the site (the Home for example, wh...
Currently in my solution I have several ASP.NET web projects, each with the default default authentication code of the MVC entity framework (there are small customizations in entities only). The projects share the same entities and the same data...
Well, the scenario is as follows:
I have 2 applications ASP.NET MVC in a same project, which is using a Dominio in common. I'll call MVC1 and MVC2 to get better at the sample.
I've installed Identity ,...
I have a class that loga some information in the database I am using it as follows:
new StudyLogRepository().Create(new StudyLog() {
StudyId = Study.Id,
CycleId = null,
DateOccurrence = DateTime.Now,
CycleActionName = "Nova estud...
I'm looking to implement authentication via facebook . Where I want to get more public data. I already have the default authentication set up. But I need something more, because it just brings me the Email.
I'm basing some answers o...
I'm trying to make a TransactionScope but it always gives me an error:
Application Server Error '/'.
A second operation started on this context before a previous
asynchronous operation completed. Use 'await' to ensure that a...
Currently the code below exports and compacts the PDF one at a time and I need to export multiple PDF into a compressed file
public ActionResult PDFTodosMesAtual(ProcessamentoRegistros _processamento)
{
try
{...
I have the following method:
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<ActionResult> Criar([Bind(Include = "CategoriaId,Nome")] Categoria categoria)
{
if (ModelState.IsValid)
{
categoria.CategoriaId = Guid.N...
I have an enum of schooling if in case the user select the level of schooling as incomplete Superior or complete I want to appear a field to enter what is the course
How can I do this?
<div class="panel panel-default">...