Posts by Henrique Abreu • 379 points
18 posts
-
0
votes1
answer430
viewsQ: Error generating Controller MVC 5
Good morning colleagues, I am trying to generate a controller on MVC 5 with VS 2019 and am taking the following error message. Someone could help me with this problem? Error executing selected code…
-
0
votes4
answers3388
viewsA: Cannot read Property 'name' of Undefined
Just to confirm, I removed the code snippet below and yet the problem still persists... {{ formErrors.name }} Does it have something to do with the angular packets?…
-
0
votes4
answers3388
viewsA: Cannot read Property 'name' of Undefined
I forgot to put this code in the error text.. I had already put but the problem continues.. formErrors = { 'name': '' 'email': ', 'gender': ' 'Birth': ', 'techno': ' 'message': '' };…
-
1
votes4
answers3388
viewsQ: Cannot read Property 'name' of Undefined
Gentlemen, I’m making this mistake by running my registration form.. ERROR Typeerror: Cannot read Property 'name' of Undefined at Forms.js:3282 at Forms.js:3222 at Array.foreach () At…
-
2
votes2
answers110
viewsQ: Create navbar with centralized search field
are trying to make a Nav bar with a centralized search field.. I even managed to do more I believe I’m not in the best way, because when I open on a smartphone everything gets weird... Follow my…
-
2
votes1
answer5075
viewsQ: I need a movie API that returns Json
Gentlemen all good? Someone has a movie API that returns json if possible with the movie photo? I’m doing some examples of app with Xamarin but the api it uses in the example n works more..…
-
3
votes3
answers1719
viewsQ: Very slow C# and MVC site
I developed a site in MVC and C#, but after deploying in Gogaddy server I have noticed that the first access is very, but very slow. I practically check if there is a logged in user, if I do not…
-
0
votes2
answers119
viewsA: Render View for a string
this code falls into the same problem I had.. I made some changes and managed to at least call the View, but now the problem is being when passing a Viewbag to the View... Can anyone tell me why?…
-
0
votes2
answers119
viewsQ: Render View for a string
I took a code right here in the stack to render a view to string. When the view to be converted is in the same context, that is, in the same controller folder works normally, however if I try to…
-
1
votes1
answer433
viewsQ: Text editor for email formatting
I need to create a page for creating and formatting emails. Which text editor is most reliable for doing this? I say this because some email viewers are very limited and do not interpret some HTML…
-
3
votes1
answer266
viewsQ: Correct View Creation on MVC using Ajax
I have a page that performs maintaining a budget. Below I present a briefing of entities public partial class Orcamento { public int IdPedidoCompra { get; set; } public int IdCliente { get; set; }…
-
1
votes1
answer96
viewsQ: Sql query return the same name with different date
My table Acidente is more or less like this: Vitima - DataRegistro Pedro - 10/02/2015 Pedro - 20/03/2015 Maria - 01/05/2015 Maria - 01/05/2015 I need to make a query (Sql) that returns the records…
-
0
votes1
answer846
viewsQ: Positioning of speakers in bootstrap
I have 3 columns, they are positioned like this: Dados Basicos | Endereço Contato So when the responsibility is done he gets like this Dados Basicos Endereço Contato But I need it done this way:…
-
0
votes1
answer100
viewsA: Google Api - SEO - Google Index and Google plus via json
Somebody please help me. I need to retrieve the Google Index of my site via code. When I put this information in google "site:xxxxxxxxxxxxxx.com.br" I get "Approximately 13,400 results (0.28…
-
4
votes1
answer686
viewsQ: Turn Stream into PDF to send with attachment in email
I am making a page to send email, and I need to turn a specific page into pdf to be attached to the email. The page I already managed to turn into Stream, now how can I do to turn it into pdf and…
-
3
votes1
answer100
viewsQ: Google Api - SEO - Google Index and Google plus via json
I need to recover via json or some other way Google SEO information to feed my database.. For now it’s just Google Index and Google+ Does anyone know how to do that? Or someone has some example of…
-
0
votes2
answers149
viewsA: Include Entityframework
try this one _dbcontext.Pessoas.Include("Endereco", "Endereco.Municipio", "Endereco.Municipio.Uf").ToList();
-
6
votes1
answer522
viewsQ: Entityframework 6 + Lazyloadingenabled + using()
I need a help. My problem is this: I cannot return my object items. Follow my code for analysis. Client class public partial class Cliente { public Cliente() { this.ClienteEndereco = new…