15/06/2015 by Nitesh

Getting Started With HTML Agility Pack

Friends, In this post we will see how to get started with HTML Agility Pack and code samples to see how web scraping can be achieved using this package in C#. For users who are unaware about “HTML Agility Pack“, This is an agile HTML parser that builds a read/write DOM and supports plain XPATH…

Continue Reading »

14/06/2015 by Nitesh

How To Install a Nuget Package In Project

Friends, If you are a Microsoft developer, you must be aware about Nuget. In case you’re not aware, it is the package manager for the Microsoft development platform including .NET. The NuGet Gallery is the central package repository used by all package authors and consumers. In this post, I will show you how can you…

Continue Reading »

10/06/2015 by Nitesh

Solution: The URL for Web project ‘X’ is configured to use IIS as the web server but the URL is currently configured on the IIS Express web server

Friends, While working on a web project, I started getting this error while loading the project in VS2012 this morning. I did a Bing search on the problem and came across the following solutions. Different solutions work for different users so I am listing down all at a single point. Below is the list of…

Continue Reading »

06/06/2015 by Nitesh

How To Count Occurrences of a String Within Another String in C#

Friends, In programming while performing some business logic validations, many times we need to find a text within another text. In this post, we will see how can we count occurrences of a string within another string in C#. static void CountOccurenceswWithinString() {    string test = “Hello, how are youyou you you you, you…

Continue Reading »

05/06/2015 by Nitesh

How To Get Public IP Address Using C#

Friends, In this post, we will see how can we get public IP Address of a computer using C#. We will make use of WebRequest class to make a call to the server that returns the IP address of the machine that made the request. Here’s the code snippet that does this – static string…

Continue Reading »

1 4 5 6 7 8 38