26,357 questions with .NET-related tags

Sort by: Updated
0 answers

App Services - Web App (Linux Container) - Connection strings not working

I have a .NET 8 API that I have deployed to Azure App Services - It is a Web App (Linux Container). The API endpoints work except for endpoint that involve a database call. Swagger shows up as expected (as I have configured the app in development mode).…

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,673 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,022 questions
asked 2024-12-07T10:23:50.1133333+00:00
Matt Fricker 0 Reputation points
edited the question 2024-12-07T10:25:04.24+00:00
Matt Fricker 0 Reputation points
0 answers

After migrating to VB.NET Core 9.0 from 8.0, I am getting error messages on menu bindings

After migrating from version 8.0 to version 9.0, I am getting error messages related to the binding of menu items. I am working with Visual Studio 17.12.3 and .NET Core 9.0.101 on a Windows 11 (23H2) machine. Further down in the XAML code, I have the…

Entity Framework Core
Entity Framework Core
A lightweight, extensible, open-source, and cross-platform version of the Entity Framework data access technology.
764 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,754 questions
XAML
XAML
A language based on Extensible Markup Language (XML) that enables developers to specify a hierarchy of objects with a set of properties and logic.
821 questions
asked 2024-12-07T10:11:36.7266667+00:00
Mike van der Waard 0 Reputation points
edited the question 2024-12-07T10:22:10.85+00:00
Mike van der Waard 0 Reputation points
0 answers

How to Pass Parameters in Blazor

Hi, how can I use something like CommandParameter in Xamarin, but in Blazor for example: <div x-index="3" y-index="2"/> Then access them programmaticaly in C#. Thanks in advance

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,618 questions
asked 2024-12-07T10:00:54.7866667+00:00
Yusuf-3141 45 Reputation points
edited the question 2024-12-07T10:03:11.9533333+00:00
Yusuf-3141 45 Reputation points
2 answers

How to Increase TabbedPage Tab Title Font Size in .NET MAUI?

Hi, I am working on a .NET MAUI application and using a TabbedPage for navigation. I want to increase the font size of the tab titles on the TabBar. Here is the XAML code for my TabbedPage: <?xml version="1.0" encoding="utf-8"…

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,712 questions
asked 2024-12-03T03:05:49.5766667+00:00
nandu kathmandi 11 Reputation points
edited the question 2024-12-07T00:24:15.2033333+00:00
TP 100.1K Reputation points
0 answers

.NET MAUI Not Properly Recognizing iOS Provisioning Profiles, Even Those Created Minutes Prior

To all: I've been trying to port an app I wrote last summer in Xamarin Forms over to the latest version of .NET MAUI. I had few issues (but not none) with the Android version, but - as usual - iOS is so arcane that either Microsoft's engineers are…

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,712 questions
asked 2024-12-06T00:27:43.7033333+00:00
Small Screen Software 0 Reputation points
commented 2024-12-07T00:17:41.27+00:00
Small Screen Software 0 Reputation points
1 answer One of the answers was accepted by the question author.

ASP.NET Web Core with .NET Core 7.0 Error While Generating Scaffolding

In an ASP.NET core project built on .NET Core 7.0 I am trying to scaffold the login page with the following steps: I right click on the project, and select Add -> New Scaffolded Item I select Identity and Click on Add Then I choose…

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,673 questions
asked 2023-10-03T16:04:46.3866667+00:00
Hochgurtel, Brian D 20 Reputation points
commented 2024-12-07T00:15:52.8333333+00:00
Kushal Developer 0 Reputation points
0 answers

Why are the new keyboard types in .net maui 9 such as Date not recognized in xaml

I upgraded to VS 2022 17.12.9 and made changes for .NET 9. When I try to set any of the new .NET MAUI keyboard types for .NET 9 (Password, Date, Time) in XAML, they are not recognized. Is there some other update I need to make? Thank you.

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,712 questions
asked 2024-12-07T00:04:05.1466667+00:00
Kurt K 136 Reputation points
0 answers

maps reload on internet change

I have an issue, where I have a page created <maps:Map x:Name="ChargingStationMap" ItemsSource="{x:Binding TurbinePins}" VerticalOptions="FillAndExpand"> <maps:Map.ItemTemplate> …

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,712 questions
asked 2024-12-06T23:48:07.32+00:00
Eduardo Gomez Romero 1,095 Reputation points
1 answer

show an age when collectionview is done

I have a page, that everything gets the data by binding <Grid RowDefinitions="Auto,Auto,*,*" RowSpacing="5"> <ActivityIndicator HorizontalOptions="CenterAndExpand" …

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,712 questions
asked 2024-11-28T00:02:18.2633333+00:00
Eduardo Gomez Romero 1,095 Reputation points
commented 2024-12-06T23:30:15.8366667+00:00
Eduardo Gomez Romero 1,095 Reputation points
1 answer One of the answers was accepted by the question author.

tile bar and flyout

I am calling the Maui connectivity in the App Shell View model public partial class AppShellViewModel: ObservableObject, IPinClickHandler { private AppShell? _shell; private readonly IServiceProvider _serviceProvider; private…

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,712 questions
asked 2024-12-04T08:52:19.2733333+00:00
Eduardo Gomez Romero 1,095 Reputation points
accepted 2024-12-06T23:12:52.85+00:00
Eduardo Gomez Romero 1,095 Reputation points
3 answers

Submit blazor component data to controller mvc

Hi There, I am trying to integrate blazor with MVC and use Razor Component in MVC. In that I need to send/post data from razor component form to controller in MVC on click of a button click. Similar to what we use to do in ASP.Net mvc. @using…

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,673 questions
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,618 questions
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,673 questions
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,618 questions
asked 2024-12-06T16:00:14.5+00:00
Shubhajit Pal 0 Reputation points
answered 2024-12-06T22:33:24.6166667+00:00
Bruce (SqlWork.com) 68,236 Reputation points
3 answers

Submit blazor component data to controller mvc

Hi There, I am trying to integrate blazor with MVC and use Razor Component in MVC. In that I need to send/post data from razor component form to controller in MVC on click of a button click. Similar to what we use to do in ASP.Net mvc. @using…

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,673 questions
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,618 questions
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,673 questions
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,618 questions
asked 2024-12-06T16:00:14.5+00:00
Shubhajit Pal 0 Reputation points
answered 2024-12-06T22:33:24.6166667+00:00
Bruce (SqlWork.com) 68,236 Reputation points
0 answers

Version 4.8.03761 to Version 4.8.04084

I need to have version 4.8.04084 but I have 4.8.03761 I don't see where I can download this other then 4.8 download.

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
asked 2024-12-06T20:20:38.23+00:00
Michael Rataiczak 0 Reputation points
0 answers

Using Business Logic Classes in C# with .NET MAUI

What are the best practices for creating business logic classes in C# for a bank application? Specifically, how do business logic classes interact with data access classes, and how can expression-bodied members be utilized in this context?

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,539 questions
.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,712 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.
11,108 questions
asked 2024-12-06T20:05:12.9933333+00:00
Tom Meier 260 Reputation points
0 answers

How to use OpenXML SDK in a vb.net project to change custom properties of .docx files?

I'm working on a vb.net project that is supposed to use OpenXML SDK to alter custom file properties of a .docx file. Once I have the document open as a 'WordprocessingDocument`, how do I access the custom file properties?

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
asked 2024-12-06T19:28:25.2+00:00
Aaron Gerber 0 Reputation points
1 answer One of the answers was accepted by the question author.

Popup appears behind other page contents

Hello, I was trying to create a pop-up that will pop up after the page finishes loading everything on it. But the popup and its contents hides behind, and the close (X) button does not respond. How can I make the popup appear in front and the close (x)…

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,539 questions
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,539 questions
asked 2024-12-06T10:28:55.7266667+00:00
Donald Symmons 2,986 Reputation points
accepted 2024-12-06T19:12:09.54+00:00
Donald Symmons 2,986 Reputation points
1 answer One of the answers was accepted by the question author.

Popup appears behind other page contents

Hello, I was trying to create a pop-up that will pop up after the page finishes loading everything on it. But the popup and its contents hides behind, and the close (X) button does not respond. How can I make the popup appear in front and the close (x)…

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,539 questions
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,539 questions
asked 2024-12-06T10:28:55.7266667+00:00
Donald Symmons 2,986 Reputation points
accepted 2024-12-06T19:12:09.54+00:00
Donald Symmons 2,986 Reputation points
1 answer

Should I bind navigation properties or entity ids in reusable components?

I am using Blazor with InteractiveServer at the applcation level and Radzen component library. I would like to create resuable components that fetch their own data for things like dropdowns. For example, I have a Request entity with the following…

Entity Framework Core
Entity Framework Core
A lightweight, extensible, open-source, and cross-platform version of the Entity Framework data access technology.
764 questions
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,618 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.
11,108 questions
asked 2024-12-05T20:38:11.81+00:00
Caleb Weeks 0 Reputation points
commented 2024-12-06T19:07:01.45+00:00
Caleb Weeks 0 Reputation points
1 answer

WPF: Should a Class Unregister Its Own PropertyChanged Events?

Our WPF application targets .NET Framework 4.8. if a class register an event such as "this.PropertyChanged += OnPropertyChanged;", Is it the responsibility of this class to unregister it? Thx!

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,980 questions
asked 2024-12-06T18:19:27.3266667+00:00
Jane Jie Chen 346 Reputation points
commented 2024-12-06T18:27:46.5266667+00:00
Jane Jie Chen 346 Reputation points
1 answer

ASP.NET web site build error in VS2022 due to missing assembly reference

I am maintaining an ASP.NET Web site. It has many assemblies (and DLLs) in Bin folder. The web site project is legacy one without any project file. One of the DLLs is DLL that uses CLR. Even though the dll is there in bin folder, building web site…

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,539 questions
asked 2024-12-05T19:12:33.2766667+00:00
MadhukannanBollu-1509 0 Reputation points
edited an answer 2024-12-06T18:01:17.0633333+00:00
Bruce (SqlWork.com) 68,236 Reputation points