3,288 questions with ASP.NET tags

Sort by: Updated
3 answers One of the answers was accepted by the question author.

Issue regarding ToolkitScriptManager

Hi, Can you help to the following?

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
ASP.NET API
ASP.NET API
ASP.NET: A set of technologies in the .NET Framework for building web applications and XML web services.API: A software intermediary that allows two applications to interact with each other.
302 questions
asked 2023-08-25T08:56:13.96+00:00
Peter_1985 2,526 Reputation points
accepted 2023-08-26T09:07:30.6633333+00:00
Peter_1985 2,526 Reputation points
1 answer One of the answers was accepted by the question author.

Remove Hardcoding and populate from json distinct values

I want the CategoryDDL to be populated from Burned.txt and not I want to remove the hardcoding bicycling,conditioning,dancing... <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/Site.Master"…

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-24T08:01:57.88+00:00
Anonymous
accepted 2023-08-25T13:22:17.0233333+00:00
Anonymous
0 answers

set ASP.NET SessionId cookie path attribute in web.config

Hi, I am trying to set path of ASP.NET SessionId cookie in web.config file but in response header cookie path always showing "/" as cookie path. I have tried configuring the cookie path in outbound rule in web.config and in forms…

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2021-08-13T07:20:37.123+00:00
Mrutyunjaya Sahu 1 Reputation point
commented 2023-08-25T06:28:09.95+00:00
HIMANGSHU BAISHYA 0 Reputation points
2 answers One of the answers was accepted by the question author.

How does the "UseRouting" method work in ASP.NET Core?

I've read that UseRouting matches a request to an endpoint, and UseEndpoints executes the matched endpoint. However, we have middleware in this order: // ...Another Middleware UseRouting(); app.MapControllerRoute( name: "default", …

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,415 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,207 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,306 questions
asked 2023-08-21T23:21:18.9733333+00:00
Hikljh Dima 20 Reputation points
accepted 2023-08-24T15:34:56.7633333+00:00
Hikljh Dima 20 Reputation points
1 answer One of the answers was accepted by the question author.

Accessing members list from Azure Group

I am using ManagedIndentityCredential code in Javascript to fetch users from a Azure group but all I get is null values. The same code when used with DefaultIdentityCredential works and correctly fetches the list of group members. The managedidentity has…

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,415 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,207 questions
Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
10,715 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-07-18T11:28:14.0533333+00:00
Jain, Saurabh (SOP IT APD DA C03) 20 Reputation points
accepted 2023-08-24T04:21:05.12+00:00
Jain, Saurabh (SOP IT APD DA C03) 20 Reputation points
1 answer One of the answers was accepted by the question author.

Is there a way to add Material Design to ASP.NET Webforms?

I haven't found many resources to add Material Design to ASP.NET Webforms. The closest I found was this stackoverflow which didn't help much.

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-22T00:06:23.8533333+00:00
Brian Tan 40 Reputation points
commented 2023-08-23T19:57:27.5466667+00:00
Brian Tan 40 Reputation points
1 answer One of the answers was accepted by the question author.

Assembly 'AjaxControlToolkit' could not be loaded

Hi, Can you help to the issue below?

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-22T09:35:02.11+00:00
Peter_1985 2,526 Reputation points
accepted 2023-08-23T10:16:55.2733333+00:00
Peter_1985 2,526 Reputation points
1 answer

Is Razor's AuthorizeView-component dependent on the existence of a default authentication scheme?

When a default authentication scheme is not provided during registration of the authentication service the user does not get authenticated, hence the items contained within the authorize-view-component do not get rendered. Hence my question: Does…

Blazor
Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,403 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-10T10:08:36.3166667+00:00
Yakup Ipek 0 Reputation points
commented 2023-08-23T07:36:32.52+00:00
Yakup Ipek 0 Reputation points
1 answer

How to store selected value of drop down list on local storage ?

I work or razor page asp.net core 7 . i face issue i can't store value of selected value option on local storage  so please How to do that ? <form id="FrmShelfLabelPrintrSetup" method="post"> <div…

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,207 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-19T23:10:34.7233333+00:00
Ahmed Abd El Aziz 315 Reputation points
commented 2023-08-22T17:55:59.5266667+00:00
Bruce (SqlWork.com) 56,931 Reputation points
3 answers One of the answers was accepted by the question author.

C# Transpose a 2D matrix, looking for the best way

Hello, What is the best and easiest way to transform a matrix? With C# .NET4.8 // The best is with a sample i.e. --> Transpose the matrix from 3,5 to 5,3 namespace WindowsFormsAppMatrixBasic.Core { public static class…

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,306 questions
asked 2022-02-15T17:04:27.807+00:00
Markus Freitag 3,786 Reputation points
answered 2023-08-22T12:00:24.05+00:00
DINESH KUMAR VADIVEL 0 Reputation points
1 answer One of the answers was accepted by the question author.

Windows Server 2019 and .NET Framework 4.6.2 support

I have an ASP.NET Web Forms website built with .NET Framework 4.6.2. Currently the website is published on IIS in a Windows Server 2012. We have upgraded the server to Windows Server 2019 and the website is working without changing the framework version.…

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
3,480 questions
Internet Information Services
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,415 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-21T19:21:04.9966667+00:00
Ryo Saeba 20 Reputation points
accepted 2023-08-21T22:52:35.0166667+00:00
Ryo Saeba 20 Reputation points
1 answer One of the answers was accepted by the question author.

"ASP.NET MVC Application: Database Issue - Need Assistance"

I'm encountering a perplexing issue with my ASP.NET application's database functionality and could really use some expert advice and insights from the community. My application involves user registration, login, and OTP verification. While the logic…

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-18T13:14:58.7333333+00:00
Mehak 40 Reputation points
commented 2023-08-21T06:08:55.0266667+00:00
Mehak 40 Reputation points
2 answers One of the answers was accepted by the question author.

load XML TO SQL Server table

I created the table and want to load alim_2020_07_07.xml to ALIM CREATE TABLE [dbo].[ALIM]( [alim_code] [int] NOT NULL, [alim_nom_fr] [varchar](20) NOT NULL, [ALIM_NOM_INDEX_FR] [varchar](50) NOT NULL, [alim_nom_eng] [varchar](50) NOT…

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
12,808 questions
asked 2023-08-18T11:21:11.2333333+00:00
Anonymous
edited an answer 2023-08-19T08:46:11.9666667+00:00
Anonymous
2 answers

Microsoft, .NET Framework 4.7.2, CSRF and Samesite

I have a question...and some of the information is a bit confusing so I wanted to get other confirmation/validation. I have a webpages web site. Not a MVC or WebForms. Web Pages and it's in VB.NET and it's using .NET Framework 4.7.2 Our CheckMarx…

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,643 questions
asked 2023-08-11T15:59:19.8966667+00:00
Marc Davis 1 Reputation point
commented 2023-08-18T14:00:57.05+00:00
Marc Davis 1 Reputation point
0 answers

Can we implement this witout using javascript(using razor in asp.net )?

I need to do this task without using javascript it is possible?

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-18T11:17:41.29+00:00
Nandini S 20 Reputation points
commented 2023-08-18T12:25:43.0633333+00:00
AgaveJoe 26,146 Reputation points
2 answers

asp.net chart stacked column tooltip

I have a asp.net chart. It has two series. How can I show the x and y values on the tooltips of the seires?

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-10T13:02:40.9566667+00:00
Hema Ramachandran 176 Reputation points
commented 2023-08-18T08:00:37.0133333+00:00
Lan Huang-MSFT 25,876 Reputation points Microsoft Vendor
0 answers

HttpContext.Current.Session is null which inturn causing issues in my web application

I set up web application in my laptop and configure sessionstate as InProc but fail to create new HttpSessionStateWrapper(HttpContext.Current.Session) which is throwing HttpContext.Current.Session can not be null when I debug in Visual Studio 2019.

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-13T06:51:58.3166667+00:00
Harsha Vardhan Medaboyina 0 Reputation points
commented 2023-08-18T07:39:36.05+00:00
Lan Huang-MSFT 25,876 Reputation points Microsoft Vendor
1 answer One of the answers was accepted by the question author.

Unrecognized tag prefix or device filter 'asp' in intellisense

This is the second time I am getting this error. The first time the only fix I found was to recreate my project and all of the files, but this time it is not an option. I am getting an "Unrecognized tag prefix or device filter 'asp'" error on…

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,306 questions
asked 2023-08-17T14:23:42.05+00:00
Deivid Kirchev 95 Reputation points
commented 2023-08-18T03:03:39.4466667+00:00
Albert Kallal 4,806 Reputation points
0 answers

Get an error in event viewer when calling the url after deploying app in IIS

Faulting application name: w3wp.exe, version: 10.0.22621.1, time stamp: 0xb182c367 Faulting module name: ucrtbase.dll, version: 10.0.22621.608, time stamp: 0xbbf7fb0e Exception code: 0xc0000409 Fault offset: 0x0009c582 Faulting process id:…

Internet Information Services
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-08-17T09:51:04.7433333+00:00
mahmoud ali 0 Reputation points
commented 2023-08-17T15:50:06.1133333+00:00
Lex Li (Microsoft) 4,742 Reputation points Microsoft Employee
2 answers

Correlation failed, cookies not found using OpenID in ASP.net core MVC 6

I am getting the below error in my ASP.net core MVC 6 application, my application is using Keycloak and is running in a docker container. We connect to Keycloak using OpenID, but after logging in Keycloak this error occur warn:…

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,207 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,288 questions
asked 2023-03-19T12:09:20.3466667+00:00
cebuhax0r 26 Reputation points
commented 2023-08-17T15:13:58.0533333+00:00
horacio nelson ramirez silvan 0 Reputation points