The error is this:
An exception of type 'System.ServiceModel.CommunicationException' occurred in System.ServiceModel.ni.dll but was not handled in user code
Additional information: The remote server returned an error: NotFound.
I have two...
My WebApi in C # is like this.
using Microsoft.AnalysisServices.AdomdClient;
using System;
using System.Data;
using System.Web.Http;
using System.Xml;
namespace FastReport.WebApi.Controllers
{
[RoutePrefix("FastReport")]
public class...
I would like to know if there is a way to assign a particular value to a Session that is in an ASP page through an ASP.NET page (aspx)? Both files are in the same solution. How do I do this?
I've tried:
<%= Session("pgm_retorno")...
To convert a byte that comes from the sql database into image in the ListView I do this:
<asp:Image runat="server" ID="Image1" CssClass="image1style"
ImageUrl='<%# "data:image/jpg;base64,"+
Convert.ToBase64Strin...
I'm trying to generate reports with Report Viewer.
But when I go to configure the page rdlc, and I'm going to add a table for example, visual studio gives error, and it restarts.
Does anyone know how to fix this?
Personal I'm trying to create a Select List, but in case it's returning this to my view:
Microsoft.AspNetCore.Mvc.Rendering.SelectListItem
so it is not returning the Cargos that are in my database
and here are the codes I...
Is it possible, when entering a page, to leave the value of a textbox selected, and if the value is wrong, instead of deleting, is it just to enter another value that the previous value is automatically deleted?