Posts by Victor Moreno • 99 points
6 posts
-
1
votes1
answer162
viewsA: Accessing Rasor variables inside a foreach
This type of logic should run on the Controller layer (whereas you are using MVC). According to this article, the objective of Razor: Razor appears in ASP.NET MVC 3, bringing the new concept of View…
-
1
votes2
answers133
viewsA: Server changes no effect
You must Publish the project by visual studio. This option is available by right-clicking the project and the Publish option. You can give a Publish directly on the server if you have access.…
-
2
votes1
answer249
viewsA: Error when exporting SQL Server database to another Server
What I can suggest would be to edit the mappings during the sql server import and export wizard. You can change the field type, or have it regenerate the table, which I believe will consequently…
-
0
votes3
answers402
viewsA: Responsive Design - Text on img background
I believe that the best tool to work with responsiveness would be the Bootstrap, who is responsible for this work. Another suggestion I have is to always use low resolutions for the development of…
-
1
votes1
answer495
viewsA: Entity Framework without primary key
I’ve set up some projects in this scenario but I’ve never had any problems in this regard. But when I model banks, I always put PK as the identity column as well. What version of Entity are you…
-
1
votes1
answer324
viewsA: Entityexception when connecting to remote database
For any remote connection to SQL you need to pass the IP\Nome_da_instancia. It may also be the Nome_Servidor\Nome_da_instancia, but then you depend on the name-solving part working properly. Also,…