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 ArticleHow 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 ArticleSolved-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 ArticleC# 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 ArticleHow 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 ArticleHow 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 ArticleHow 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 ArticleHow 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 ArticleHow 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 ArticleWhat 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 ArticleHow 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 ArticleHow 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 ArticleHow 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 ArticleHow 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 ArticleHow 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 ArticleWhat 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 ArticleWhat 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 ArticleWhat 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 ArticleCan 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 ArticleHow 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 ArticleHow 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 ArticleHow 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 ArticleHow 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 ArticleHow 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