Questions tagged as 'asp.net'

1
answer

"Conflict" of ID within the Datalist

Good afternoon everyone. Well, I have a datalist. Then I put a repeater inside, so far so good. But then, at the time I execute, only the first repeater appears stylized the way I want it. The rest I think should change the id, and ends up appea...
asked by 02.12.2016 / 20:16
0
answers

Local dbf connection works but fails when remote

I have the code: string DbfConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\DUMP\sgc\D; Extended Properties=dBASE IV;"; It works perfectly on my note, but when I put the application on the client it displays the message:...
asked by 13.12.2016 / 12:38
1
answer

C # ASP.NET Search method by parameter returning Error 500 Internal Server Error

Good afternoon, I'm having a problem with a method that fetches the products and returns a specific one according to the last code. I am getting the 500 Internal Server Error error when I try to use the url link to call it. However the search...
asked by 03.12.2016 / 21:50
1
answer

Error creating database by Visual Studio 2015

I'm having problems, when I try to create a Database by Visual Studio this message appears:     
asked by 12.11.2016 / 22:55
1
answer

Listing the return of a ViewBag to the View?

Following the instructions in this post ( Return the data to the View using Json.net or javascript- asp.net mvc ) replied by Loudenvier looks like this: Class: public class TB_RECEBE_IMAGENS { public int Id { get; set; } public s...
asked by 25.10.2016 / 03:39
1
answer

Publish multiple projects in Visual Studio 2012

How do I publish several independent web projects that are within the same solution using Visual Studio 2012? I usually click the right mouse button on the project and I go to "Publish" but I can not do this with several selected projects.How to...
asked by 19.10.2016 / 14:03
1
answer

Status with colors in gridview asp.net C #

I need to make the texts of the exam statuses of an app appear in different colors, in the case of black, marked green and not red, these statuses are in an Enum. Follow my code if anyone knows the best way for this implementation....
asked by 14.10.2016 / 07:57
1
answer

LINQ Return from list has all records repeated

I'm having problems performing a select (using LINQ) in a View in SQL Server 2012. The values stored in the database are as below: ID_Acomp ID_Pessoa Nome Data 26 300 MONTEIRO 01-01-2016 27 300...
asked by 14.10.2016 / 21:21
0
answers

Run precompiled asp.net webforms Solution build in Team Services

Many weeks of research and testing later, I find myself in a "dead end" regarding Team Services. I have a Solution with project in ASP.NET Webforms in Team Foundation of VSTS. For operational reasons, I am putting together a methodology to autom...
asked by 10.11.2016 / 13:10
1
answer

Use of SignalIR

I'm developing a chat in SignalIR, and I can only send the messages to all logged in users, using this way: public void Send(string name, string message) { Clients.All.broadcastMessage(name, message); } I would like to send...
asked by 08.11.2016 / 19:08