Questions tagged as 'c#'

2
answers

Understanding documents from a SOAP web service

I'm working with a system that provides web service integration, more precisely SOAP. It provides me with some URLs, which I understand, access, describe, and document the entire system . They are: link link link The docu...
asked by 12.04.2017 / 22:16
1
answer

Asp.Net MVC authentication using FormsAuthentication

I'm implementing authentication in my ASP.NET MVC application. I am using FormsAuthentication for this authentication of each user and for each logged in user 5 sessions are assigned (Name, CodSetor, FolderPad, Status and CodPerfil). Au...
asked by 03.07.2016 / 15:56
1
answer

Updating application (C #) in real time with the Database (Mysql)

I'm creating a client server application, the application would run on multiple machines using the same database (mysql) on an online server. I would like as soon as the data in a table were changed, inserted or even deleted, the other applic...
asked by 20.05.2017 / 07:31
1
answer

How to export an HTML / C # (Razor) page containing SVG elements for PDF?

I'm currently working with Highcharts, a javascript library that generates graphics. It has an export component, but only exports the graphic itself, I still need to assemble the PDF layout. For export it goes to the highcharts.com server whi...
asked by 24.01.2014 / 12:53
1
answer

Best Practices when modulating an application with EF and multi-bank

Let's say I want to model an application in .NET using EntityFramework as ORM and use one of its advantages, be "generic" for several RDBMS . So, for example, I want my application to accept working with Firebird ,...
asked by 09.05.2014 / 03:23
2
answers

Access variable-based elements

I need to assign the value to a label , example: xrLabel1.text = "teste" , but I have multiple labels where only the number in the final example changes: xrLabel1.text = "teste"; xrLabel2.text = "teste"; xrLabel3.text = "teste"; How...
asked by 20.05.2015 / 01:07
1
answer

Sharing types between API and client application

I'm developing a REST API using ASP.NET WebApi 2 and as I come from the old SOAP standard, I'm used to API-client type sharing . That is, when referencing my service in the client project, all types that are used in the API are created in the...
asked by 15.02.2016 / 14:59
1
answer

How to save formatted text in the database

I'm using TinyMCE for text editing on my site. However, I'm doubtful to save the formatted text in the database and then display it the way the user typed. (paragraphs, font color, etc.). Is there any way to do this? I am using asp.net mvc with...
asked by 02.12.2014 / 00:34
1
answer

C ++ with C #, is it possible?

I have a C ++ project using visuals in it using wxWidgets. I was wanting to transfer the design look to C #. Is it possible to have the programming of the functions in C ++, but the programming of the whole visual in C #, that is, the butt...
asked by 17.06.2015 / 19:23
1
answer

How to rotate the character as the mouse moves?

I'm learning how to play a game but by following step by step I think I did something wrong. It moves correctly but just keeps looking forward and does not spin, I do not know if it's a problem in the character's turning. The script is this: p...
asked by 08.02.2015 / 16:04