menu
Log In
Register
menu
Login
Register
Questions
Hot!
Unanswered
Tags
Users
Ask a Question
About us
Cookie Policy
Home
Tag
asp.net
Recent questions tagged asp.net
1
vote
2
answers
An ASP.NET web service and its admin panel (a Windows application) are two different applications, or can they fit into one?
An ASP.NET web service and its admin panel (a Windows application) are two different applications, or can they fit into one?
There is the task described in the title. There must be a service that sticks out (albeit within the same company) and this service needs an admin interface (adding/rem ...
asp.net
c#
design-software-software
by
Fly3110
asked
Sep 21, 2021
1
vote
1
answer
How do I enable CORS in asp.net core?
How do I enable CORS in asp.net core?
I enabled CORS on the server asp.net core, but it still does not want to handle requests from my browser, but in Postman everything works fine Maybe someone has encount ...
javascript
asp.net
c#
by
SimonMiler
asked
Sep 20, 2021
1
vote
1
answer
How do I load a page without _Layout?
How do I load a page without _Layout?
There are two HTML pages, the main page with the NAV block and the registration page. When I go to the registration page I need Layout not to be loaded. How do I do tha ...
asp.net
c#
bootstrap
by
lolik20
asked
Sep 20, 2021
1
vote
2
answers
Какъв е web api или mvc (asp.net core), който се използва по-често сега?
Какъв е web api или mvc (asp.net core), който се използва по-често сега?
Моля, кажете ни кой е по-често срещаният избор в наши дни. Кое според вас е по-удобно? В какви ситуации? ...
asp.net
by
Ignatiy2
asked
Sep 19, 2021
1
vote
2
answers
How do I get rid of duplication in the controller?
How do I get rid of duplication in the controller?
I started to study .NET CORE and had a question about data sampling: I basically need to do the same actions for two actions, so I'm thinking of putting those actions i ...
asp.net
.net
c#
by
LWXD
asked
Sep 18, 2021
1
vote
2
answers
Is it worth doing a chat room on gRPC?
Is it worth doing a chat room on gRPC?
We need to make a chat room for the ASP.NET Core site. There will be general, group and private correspondence with file attachments. The choice is between SignalR and g ...
asp.net
rpc
c#
by
sergeyiljin
asked
Apr 3, 2021
1
vote
2
answers
How did the form check not move to the top of the page?
How did the form check not move to the top of the page?
The data entry form is at the very bottom of the site. When checking the validity of the data in the model, sharply moves to the very top of the site, that is, the site ...
asp.net
c#
by
olegmob
asked
Apr 1, 2021
1
vote
1
answer
How to make html output in ASP .NET MVC5?
How to make html output in ASP .NET MVC5?
Please help a beginner in ASP. Let's say there are several input text fields We need to output them by template in html at the click of a button The data transfer is eit ...
html
asp.net
by
NeShiro
asked
Mar 30, 2021
1
vote
3
answers
What literature is available to learn ASP.NET MVC?
What literature is available to learn ASP.NET MVC?
Good afternoon, suggest the current literaturestatii and video tutorials to learn ASP.NET MVC from scratch. I looked on the Internet, found some information about ASP.NE ...
asp.net
c#
by
Nikita07
asked
Mar 29, 2021
1
vote
3
answers
I can't trace the http request when I click on the site button?
I can't trace the http request when I click on the site button?
Good afternoon. The second day of puzzling how to track the request when you click on an element of the site (the button performing a specific function). Tried http anal ...
asp.net
c#
headers-http
by
fleshherbal
asked
Mar 29, 2021
2
votes
2
answers
How do I check the Email address on the site to see if it's real?
How do I check the Email address on the site to see if it's real?
The ASP.NET Core site has registration and a bunch of functionality with sending important emails. Now users can change the Email address in the personal cabinet and oft ...
asp.net
email
identity-users
by
sergeyiljin
asked
Mar 26, 2021
1
vote
1
answer
How do I correct the identity error?
How do I correct the identity error?
added service services.AddIdentity<IdentityUser, IdentityRole>(options => options.SignIn.RequireConfirmedAccount = true) .AddEntityFrameworkStores<Ap ...
asp.net
c#
by
DD-var
asked
Mar 24, 2021
1
vote
1
answer
Why does an ssl error occur?
Why does an ssl error occur?
I work with REST API over https with GOST. Project on asp net core. Using httpclient. Installed crypto pro. From time to time an occasional error occurs: The SSL connect ...
asp.net
.net
c#
digital certificates
tls
by
Gotoh
asked
Mar 24, 2021
1
vote
1
answer
How do I add a new asp.net role?
How do I add a new asp.net role?
I have an AddRoles controller and a table with roles from Identity. how do I add new roles to this table? ...
asp.net
c#
by
DD-var
asked
Mar 24, 2021
1
vote
1
answer
Regex to check the www in the address bar?
Regex to check the www in the address bar?
I want to write AddRedirect to redirect from www to non-www.Which regular expression can check if url has www. ? ...
asp.net
url-rewriting
by
Sneiksus
asked
Mar 24, 2021
2
votes
1
answer
How to continue learning with
How to continue learning with
Hi all, I have recently started to learn programming, in particular the C programming language ...
asp.net
.net
c#
by
Chiliton
asked
Mar 23, 2021
1
vote
1
answer
Is it possible to do abbreviated writing of .net core 3.1 filters?
Is it possible to do abbreviated writing of .net core 3.1 filters?
Good afternoon! Using .net core 3.1 I made a custom filter: public class AuthorizeRoles : Attribute, IFilterFactory { public bool IsReusable => false; ...
asp.net
c#
by
Jeer
asked
Mar 23, 2021
1
vote
1
answer
How do I track razor page button presses?
How do I track razor page button presses?
<form method="Post"> <button class="btn btn-warning" type="submit">Обновить</button> <button c ...
asp.net
c#
by
DD-var
asked
Mar 23, 2021
1
vote
1
answer
Why isn't the smtp email being sent?
Why isn't the smtp email being sent?
MailAddress from = new MailAddress("email", "name"); MailAddress to = new MailAddress("email"); MailMessage m = new MailMessage(from, to); ...
asp.net
smtp
c#
by
Sneiksus
asked
Mar 23, 2021
1
vote
2
answers
Is there a sql query builder?
Is there a sql query builder?
There are several tables: Order, Events to Order, Documents to Order, Invoice, Waybill, etc. They are all connected in some way. I had an idea to give the user a constru ...
asp.net
linq
by
Jeer
asked
Mar 23, 2021
Page:
1
2
3
4
...
75
next »