374,091 questions
0
votes
0
answers
3
views
How do I set default document for an ASP.NET web app in Azure App Services?
First time experimenting with creating an ASP.NET web application in Visual Studio Code. I chose DotNet 8 because it's the newest version. I am deploying it via Azure App Services. I am very familiar ...
-1
votes
0
answers
23
views
Post array of elements value, using IFormCollection
i trying to Post array of elements value, using IFormCollection, I am looking for a solution to replace the following code:
["HonorTiltle["+i.ToString()+"]"]
how to get value of ...
1
vote
1
answer
53
views
How to display all active IP addresses for SQL Server on Azure?
I have a web app (Blazor, C#) that monitors Azure resources. I need to add functionality for a user to be able to switch between different databases, and depending on which one selected, I display the ...
1
vote
1
answer
68
views
Use result of "parent.location='mailto:" in code-behind
I am using ASP.Net to handle a button click, perform some data updates in the code-behind and then pop open an Outlook mailto window using ClientScript.RegisterStartupScript. I would like to know ...
-1
votes
0
answers
22
views
Not able to sign the text file using HSM token in asp.net MONO (Linux)
// Prepare text
byte[] dataToSign = Encoding.UTF8.GetBytes(textToSign);
// Build the ContentInfo
ContentInfo content = new ContentInfo(new Oid("1....
0
votes
1
answer
44
views
Quartz in ASP.NET - What are the core tables and what can I get away with dropping?
I am currently looking at using Quartz for an ASP.NET project to schedule jobs. Basically, the app allows users to create menus that they can push to devices. Right now, they only have the option to ...
0
votes
1
answer
40
views
How to get a drop down list of imported values, and use it to filter a foreach list of values below it
I have a page that lists a bunch of doctors with their specialties, and a drop down list of specialties above it. When you initially open the page, it shows all doctors below the drop down list. I ...
0
votes
0
answers
29
views
How to make the label value goes beside the bar rather than inside in aspx.cs
How to make the label value goes beside the bar rather than inside in the bar aspx.cs. From what I see when the value for example 13961 not enough space beside the bar, the value goes inside
ASPX
<...
1
vote
1
answer
46
views
ASP.NET XML Docs with implied 'summary' tag
I want my ASP.NET (C#) project to show the XML docs comments in Swagger UI. This is working but I also want there to be an implicit <summary> tag on my comments.
E.g. I want this to work
/// ...
0
votes
1
answer
28
views
There were problems loading project grpc-client.csproj. See log for details
When I try to hit the save button for the file grpc-client.csproj on my Code Editor. It shows the error:
There were problems loading project grpc-client.csproj.See log for details.
The content of my ...
0
votes
0
answers
31
views
ASP.NET MVC project : views included into dll file in development
I change some setting and now my project is including the views into a dll file. I have looked over the web.config and debugging setting but I am not sure what happen but now I am seeing this roslyn ...
0
votes
1
answer
59
views
Bootstrap modal working proper but not with overlay component
The current interaction behavior is that after I click submit the form, it should have delayed time with spinner and success message but they're still not showing only modal close in setTimeout() ...
0
votes
1
answer
66
views
How to add icon tag on button using ASP.NET button server side tag?
I work on ASP.NET and face an issue when add icon tag on button server side. The button text display html script does not display icon with text resources. Expected is display of the icon with name of ...
0
votes
1
answer
53
views
HTTP Error 403.14 - Forbidden IIS 10 .net framework 4.5
I have a website not working on IIS 10 with an ASP.NET MVC project with few issues listed below. This site is working fine on IIS 8.
My project is using .NET 4.5.
When I navigate to example.com/...
0
votes
0
answers
56
views
Sanitize HTML input in a C# class attribute
If one wishes to sanitize HTML input, he has to use a library like HtmlSanitizer. Example:
var sanitizer = new HtmlSanitizer();
var sanitized = sanitizer.Sanitize(model.htmlInput);
Is it possible to ...