Category: .Net

How to decode HTML character code in c#?

In this tutorial I will show you how to decode HTML characters in c#. Here, my string values contains HTML …

Read Article

Microsoft.Windows.UniversalCRT.Msu.7,version=10.0.26624. 1,chip=x64' failed to install

I got this following problem while installing visual studio 2019 showing message setup completed with warnings.

Read Article

Solved-The breakpoint will not be hit no symbols loaded for this document

"The breakpoint will not be hit no symbols loaded for this document" while i tried to debug the project using …

Read Article

Sql corresponds to the Asp.Net data type

During the development of the program, when creating SQL stored procedure parameters, you need to find the corresponding SQL data …

Read Article

The difference between web applications and web sites

As the name implies, it is like an application, it can be accessed like a website, but once you change …

Read Article

How to create login page in asp.net?

In this article I will show you how to create asp.net c# login page code with sql database. In this …

Read Article

[Solved]WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive).

I am using validation controls in asp.net application, I got this following webforms unobtrusivevalidationmode error while running the application.

Read Article

Solved-You must have administrative rights on this machine in order to run this tool

When I tried to run this command “aspnet-regiis.exe -ir” in the command prompt I got the following message “You must …

Read Article

No type Libraries were found in the component

When I tried to add Reference to c# web project by browsing the dll file I got the following error.It …

Read Article

System.speech dll download

Here you can download System.Speech.dll and reference it with an application.

Read Article

Asp .net text to speech using c#

In this article I will show you how to convert text to speech using namespace System.Speech in .Net framework.

Read Article

Asynchronous operations are not allowed in this context. Page starting an asynchronous operation has to have the Async attribute set to true.

I got the following error while running the asp.net web application. It was resolved by adding Async=”true” attribute as instructed …

Read Article

An asynchronous operation cannot be started at this time. Asynchronous operations may only be started within an asynchronous handler or module or during certain events in the Page lifecycle.

I got the following error while running the application; we needed to add Async attribute to the page directive and …

Read Article

Can make a call from HTML button to server side page

You can call any server side control by defining runut=”server” and onServerClick for HTML button and you can not do …

Read Article

 remove character from html file?

While running the project I got the following  character displayed on the top of the html page. It was …

Read Article

How to bind gridview with json in asp.net c#?

In this article we will discuss How to bind gridview with json in asp.net c#. On the page load bind …

Read Article

How to bind data from xml file to chart control in asp.net?

In this article we will discuss, to bind data from xml file to chart control in asp.net. we need to …

Read Article

How to create 3 dimensional charts in asp.net?

In this article we will discuss, to create 3 dimensional charts in asp.net. It is simple we need to set …

Read Article

How to bind data from database to chart control in asp.net?

In this article we will discuss, to bind data from database to chart control in asp.net. To connect the database …

Read Article

How to create chart by programmatically in asp.net?

In this article we will discuss, to create chart by programmatically in asp.net. Before preceding this refer part1.

Read Article

How to setting ChartType property in asp.net chart control dynamically?

In this article we will discuss, how to setting ChartType property in asp.net chart control dynamically. Please refer before preceding …

Read Article

How to display data using asp.net chart control?

In this article we will discuss, how to display data using asp.net chart control. We want to display weekly visitors …

Read Article

[Solved] Error executing child request for ChartImg.axd

I am using Asp.net 4.0 chart control while running the application I had faced this error “Error executing child request …

Read Article

[Solved] Unknown server tag ‘asp:Chart’

While running the application I had faced error message Unknown server tag ‘asp:Chart’ . This problem was resolved by registering …

Read Article