Posts by Augusto Cruz • 46 points
8 posts
-
0
votes1
answer176
viewsA: I can’t find the Web form ASP.NET in Visual Studio 2019
Hello, in ASP.NET Core you should add a Web Application (Evolution Web Forms): On the next screen choose where you want to create the project and then select a template (I suggest creating a project…
-
1
votes1
answer37
viewsA: Duplicate field ASP.NET Core MVC
Hello, check in the Startup.Cs class where you are directing errors: if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } else { app.UseExceptionHandler("/Home/Error"); app.UseHsts(); } If…
-
0
votes1
answer16
viewsA: Datagridviewer Horizontal Scrolling
Bootstrap has a CSS class called table-responsive, I use it in Grid’s so that they roll horizontally when the columns don’t fit on the screen, you can try to do so: <div…
vb.netanswered Augusto Cruz 46 -
0
votes2
answers105
viewsA: Doubts with do-while loop
Hello, in my opinion your code is going well, what I would advise is to change the position a little and add a break so that it exits the loop as soon as the user gives an invalid option: int main…
-
0
votes1
answer37
viewsA: Failed to send email ASP
Hello, try putting a comma after each email, leaving the last email without the comma at the end. Ex: Sender1 <"Sender1">, Sender2 <"Sender2">
-
1
votes3
answers116
viewsA: How to use jquery to form the date field for month and year?
Hello, check if there is no other call of mask for this field in question, why it seems he already has a date mask, then remove an id from the input, he is with two id’s, after that try to do so:…
jqueryanswered Augusto Cruz 46 -
0
votes1
answer178
viewsA: Problems when clicking an input
Hello, your code presents some classes that do not exist in Bootstrap 4.3.1, unless you have not created them for another purpose remove them and use the ones that the framework offers, see below…
-
0
votes3
answers1052
viewsA: How to select different records between two tables
It is not possible to connect the two tables by a column and then put them as different in the WHERE, for this one must have another column to make the link, ai yes could filter in the WHERE the…