Web App

This category is for all the web site and web application project

IIS – Understanding Virtual Directory

Filed in ASP.NET, Web AppTags: , , , , ,

As you develop your web application in .Net framework you need to run the web application online. Because Visual Studio can allow you to run application only on local computer. So now what next we need to do if we want to run our application online. We need to deploy the application and also configure [...]

ASP.NET – Passing Multiple Values in Querystring

Filed in ASP.NET, Web AppTags: , , ,

Using the Querystring is the another method to pass information between pages in your ASP.NET application. As we know that Querystring is the portion of the URL after a Question Mark(?). The information is always retrieved as a string that can be converted with any type.Here we get the code to pass multiple values at [...]

Cookies with Multiple Values in ASP.NET

Filed in ASP.NET, Web AppTags: , ,

Recently we discussed various facts about a Cookie. Today we will see that how a single cookie can store multiple values. First we will create a Cookie then we will store multiple values in the same Cookie. Also the important thing is to retrieve the all values of that cookies. Whether you can retrieve the [...]

ASP.NET Cookies – Creating, Retrieving and Deleting Cookies

Filed in ASP.NET, Web AppTags: , , , ,

Cookies are used to store the information when web server and web browser are not connected. This information can be about the online visitors, total visits to that particular application etc. A cookie is used to identify a user. The cookie is a small text file that is sent by web server and saved by [...]

How to Extract a URL’s Title, Description and Images using HTML Agility Utility

Filed in ASP.NET, Web AppTags: , , , , , , , ,

Extracting the details from any web page URL is not so easy task. Because you need something to track that page. In this article we are going to extract the details like Title, Description and collection of Images. To do this we need HTML Agility Utility in our web application. When we share a link [...]

10 Landing Page Testing Mistakes You Should Avoid

Filed in Web AppTags: , , , ,

There are different types of testing methods and strategies that you can use for the sake of checking if your landing page is up to the mark. However, when you are planning these strategies, there are a few common mistakes that you must avoid.

How to Bind Data to TextBox inside GridView

Filed in ASP.NET, Web App

Hello Friends, We have discussed many thing on GridView previously. Today we are going to discuss one more and interesting thing that you can implement inside GridView. Today in this article I am going to tell you how to bind data with a toolbox control that is Textbox control inside a GridView. To perform this [...]

Generate Randon Machine Key in your ASP.NET Application

Filed in ASP.NET, Web AppTags: , , , , ,

A machineKey generator allowing static keys in ASP.NET 1.1 or 2.0 applications. There are two keys that ASP.NET uses to encrypt, decrypt, and validate data in ViewState, Forms Authetication tickets, and out-of-process Session data. The decryptionKey is used for encryption and decryption of authentication tickets and encrypted ViewState information. The validationKey is used to validate ViewState and [...]

Wizard Control In ASP.NET

Filed in ASP.NET, Web AppTags: , , ,

Wizard Control of ASP.NET help us to create a step by step wizard in our website. The Wizard control used when we want a big number of entries from user. Mainly we use this control in signup process of our site. In this article we will learn to use the Wizard control as well as [...]

Export GridvView to PDF File in C#.NET

Filed in ASP.NET, Web AppTags: , , , ,

Previously We have exported the GridView control to Excel/CSV files. Today we are going to export the GridView to PDF File. Exporting the GridView to PDF is a different thing. Because we need some other references to perform this. I have add a reference ‘iTextSharp.dll’ to export into PDF. Also in this article the process [...]