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...]

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...]

Daypilot Asp.net Control Weekly Scheduler

Daypilot is a nice scheduling control you can use in your website, if you want to use schedules in your application.//Page Load Codeprotected void Page_Load(object sender, EventArgs e)    {                     DayPilotCalendar1.StartDate = … [Read more...]

Item Command Event In Data List with Code

How to use Item Command event in Datalist with the help of command name. for example you have a  label and a button in a datalist and you want to do somthing on the click of that button .you can do it eaisly by using command name properties of your button control.Demo … [Read more...]