EDUDOTNET

Tuesday, August 27, 2013

Dynamically Get/Add Web Page Title And Meta Tags Using C#

How To Get Web Page Title And Meta Tags By URL Using C#? How To Add Dynamic Meta Tags Using C#? We can get web page title and meta tags using c# by web url and also can add dynamic meta tags. We need to add "HtmlAgilityPack" for parse HTML document in c#. Add Namespaces using System.Text.RegularExpressions; using System...

Saturday, August 3, 2013

Exception: "Object reference not set to an instance of an object”

What do you mean by "Object reference not set to an instance of an object”? Approximate every day, C# programmers getting this type of error and ask: Why do I get the error "Object reference not set to an instance of an object"? The program is trying to access a member of a reference type variable which is set to null that is a main reason...

Thursday, August 1, 2013

Get Element XPath of Selected Element Of IFrame Using Jquery

How To Get Element XPath of Selected Element Of IFrame Using Jquery XPath This a query language that can be used to select arbitrary parts of HTML documents in ability. XPath is a language that describes a way to locate and process items in HTML And XML documents by using an addressing syntax based on a path through the document's...