Posts by Otávio Medeiros • 65 points
6 posts
-
0
votes1
answer55
viewsA: Identity field going to Insert
In the database they created the field as Numeric, so I understood the visual studio was not recognizing that the field was Identity. I changed in the bank to int and model and worked normally.…
asp.net-mvcanswered Otávio Medeiros 65 -
0
votes1
answer55
viewsQ: Identity field going to Insert
When I make my insert table companies field Empresacodigo (Field Identity) is going on insert, even though his property is like Identity in my application Asp.net. What can I do ? public class…
asp.net-mvcasked Otávio Medeiros 65 -
0
votes1
answer495
viewsQ: Entity Framework without primary key
I have the following problem: Every time I update the Diagram model of my project, it loses the reference of which field is the primary key, even I try the PK in the table in my Database. Does…
-
1
votes1
answer596
viewsQ: How to Create a Web Forms User Control Component
I have the following problem, I created a component of type Web Forms User Control, I put in it button, grid, the way I want it to be my default registration. It works, as long as it’s on a page…
asp.netasked Otávio Medeiros 65 -
1
votes1
answer502
viewsA: Creation of dynamic controls in ASP.Net
I managed to solve my situation... I used User Control, in it I draw as I want the buttons, grid and everything else. This works as a component, once it is done just drag to the screen and ready :)…
-
4
votes1
answer502
viewsQ: Creation of dynamic controls in ASP.Net
I’m looking to create a component for a standard criminal record. In the project I am developing, I am using Web Forms, where I have my masterPage with the layout of the site (menu, header and…