Posts by J. Moura • 49 points
12 posts
-
0
votes1
answer156
viewsQ: Remove point and comma character and spaces from the last email in the recipient list
Hello, I want to send my emails as below: [email protected];[email protected]; but it’s giving me a sending error, because it’s taking the semicolon of the last address, when I put the emails in this way…
-
0
votes1
answer43
viewsA: Query that searches quantity of items from a column in a table with the same name
I made this select in the database to search the records of the LEAD table in the column Origin and below I will leave my query, which gives me a return with status 200 but without the column data I…
-
-2
votes1
answer43
viewsQ: Query that searches quantity of items from a column in a table with the same name
Hello, I’m trying to find the amount of records with the same name, from a certain column in my Lead table in the database in a period (month). Follow my class, I want to search only from the field…
-
1
votes1
answer257
viewsQ: Event keypress and filter data after inserting value into any form input
Hello, I’m trying to filter my SPA with a data entry form. I have a form with 3 inputs text, and my intention is in the seller field,type the name of the seller (I have an autocomplete in this…
-
0
votes0
answers52
viewsQ: Filter records from a table through any data entry field
Good morning, what I am trying to do is the following, I have two fields with inputs, 1 for Seller and another for Customer. Below these fields I have my table that loads the data that comes from…
-
0
votes0
answers370
viewsQ: Configure Startup.Cs in Asp.Net Core
Hello, I am unable to configure my Startup.Cs to run my application in . Net Core. The following error is being executed: An error occurred while Starting the application. Invalidoperationexception:…
-
0
votes2
answers83
viewsA: Insert comma after checking more than one name
In case I have a multiselect in html,and I want to separate the selected values within the combobox and separate by commas when I list all users with their replies types of requests. public…
-
1
votes2
answers83
viewsQ: Insert comma after checking more than one name
foreach (var user in users) { var strTypesModel = ""; foreach (var typesModel in user.typesModel) { strTypesModel = strTypesModel + typesModel.Name; } user.TypesModelAggregate = strTypesModel; } I…
-
0
votes0
answers323
viewsQ: Click the button and save xml file to the server side
Hello, I am building an application with PHP, I happen to have a button that when clicking it generates a file.xml in the downloads folder,I believe by default,but I want to generate this file.xml…
-
0
votes2
answers535
views -
0
votes0
answers68
viewsQ: Actionresult Create error
I’m with a exception, in the method of creating an object with a foreign key, db.SaveChanges() with the following message: Dbupdateexception was unhandled by user code. [HttpPost]…
-
1
votes1
answer114
viewsQ: How to Save Data Console Application using Entityframework
I made a console application using the Entity Framework, I’m just having a hard time implementing the methods of my repository class that I inherit from an interface,: public interface…