Tag: ASP

The request was aborted: Could not create SSL/TLS secure channel -Error in Asp.net

I got this following error "Could not create SSL/TLS secure channel" in your ASP.NET MVC WebClient application.

Read Article

How to generate machinekey for web.config?

In this tutorial I will show you how to generate machinekey for web.config file using windows powershell.

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

C# method to determine whether the client disables cookies

For security reasons, some clients disable cookies. When you want to use cookies to store some information (especially some critical …

Read Article

How to get current page url in asp.net c#?

In this article, I will show how to get current page url using asp.net c#. We can get current page …

Read Article

How to create registration form in asp.net with sql database?

In this article, I will show to how to create a registration form in asp.net with c# code. First, create …

Read Article

How to create rss feed in asp.net c# from LinQ to xml?

In this article, I will show how to create RSS feed Reader from Linq to XML in asp.net. You can …

Read Article

How to get websites favicon in mvc asp.net?

You can use HTML agility pack or XmlDocument and get favicon. The following code will bring the path of website’s …

Read Article

How to clear session in asp.net?

In this article I will explain how to clear session in asp.net with an example. If you want to remove …

Read Article

What is Polymorphism in asp.net?

In this article, I describe what is polymorphism and when we use polymorphism in asp.net. polymorphism is one of the …

Read Article

How to get selected dropdown text and value using jquery in asp.net?

In this Article, I explain how to get selected dropdown text and value using jquery in asp.net. Here I am …

Read Article

How to get selected dropdown value using jquery in asp.net?

In this Article, I explain how to get selected dropdown value using jquery in asp.net. Here I am using jquery …

Read Article

How to get selected dropdown text using jquery in asp.net?

In this Article, I explain how to get selected dropdown text using jquery in asp.net. Here I am using jquery …

Read Article

How to read your xml file in asp.net?

In this Article, I explain how to read your xml data’s using dataset. Normally to Dataset contains Readxml property to …

Read Article

How to bind Gridview using xml in asp.net?

This Article, I explain how to bind your Gridview using xml data’s. Here I am using Web application to achieve …

Read Article

What is concept of Boxing and Unboxing?

Boxing permits any value type to be implicitly converted to type object or to any interface type implemented by value …

Read Article

What are Value types and Reference types ?

Value types directly contain their data which are either allocated on the stack or allocated in-line in a structure.

Read Article

What are different types of JIT ?

JIT compiler is a part of the runtime execution environment. In Microsoft .NET there are three types of JIT compilers:

Read Article

Can we force garbage collector to run ?

System.GC.Collect() forces garbage collector to run. This is not recommended but can be used if situations arises.

Read Article

How to use try and catch in vb.net?

Here I am going to describe how to use try catch in vb.net. In this try section write your logic …

Read Article

How to bind DataGridView in vb.net?

In this articles describes how to bind DataGridView in vb.net. Here I am using SqlDataAdapter to fill dataset and then …

Read Article

How to use mysql connection string in vb.net?

In this articles describes how to use mysql connection string in vb.net. if you know how to use sql server …

Read Article

How to use mysql connection in vb.net?

In this articles describes how to use mysql connection in vb.net. Here I am using ADO.net to connect mysql with …

Read Article

How to convert date to string in vb.net?

In this articles describes how to convert datetime to string vb.net. Here I am using Format Method to format or …

Read Article