Find Page Rank of a Web page In Asp.net with C#

Google-pr

Page rank shows rank of your web pages, Page rank algorithm gives you idea about the page quality, more quality link to your page means Good Page rank, Page rank used as a reputation of a web page, high page ranks get very good reputation in the market of Internet.] You can use this code … [Read more...]

How to Fix the Validation of viewstate MAC failed error

When you deploy as asp.net web app into a web farm environment, each web servers machine.config or web.config must specify the same key used for encrypting the view state.Try This. … [Read more...]

Export to Doc,Xls and txt Aspx Page Contents

Export aspx page content to word xls and text files by using these methods. just call at button click and place your content in a panel and use this code.Export to Excel public void exporttoexcel() { Response.Clear(); Response.AddHeader("content-disposition", … [Read more...]

Use Ajax Model Popup on Form Load

if you want to use Model Popup on Form Load You can Do it easily just set target control id to form id like thisPopUp Panel Name Email Id Phone No Model PopUp Extender Codeon Form Load … [Read more...]

Facebook Like Popup In Asp.net Jquery

Facebook Popups are Really Cool and smooth, You can create Your Own Facebook Like popup in your application by using jquery. Download the Demo project and Use it In your Applications . it is very easy to use and stylish.Html Code www.geekstrack.com Simple demo … [Read more...]

Crop Images using Asp.net

That

Cropping refers to the removal of the outer parts of an image to improve framing, accentuate subject matter or change aspect ratio.You can easily crop images in asp.net website. by using jquery.Html Code Cropping with jquery & ASP.NET - By Miron Abramson … [Read more...]

Create Page Hit Counter in Asp.Net

Create table Query for Hit CounterCREATE TABLE [dbo].[hits]( [i_autoid] [int] IDENTITY(1,1) NOT NULL, [hits] [float] NULL, [cratedate] [datetime] NULL CONSTRAINT [DF_hits_cratedate] DEFAULT (getdate()))C# Code For Hit Counterpublic partial class _Default : System.Web.UI.Page { … [Read more...]