Web App

Posts filed under Web App

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

How to Play a YouTube Video in ASP.NET Web Application

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

In this article we are going to play a YouTube video file in our web application in asp.net. Sometimes we need to play the video in our application. This article will help you to perform this task in the easiest way. I have used a TextBox, Button and Div control to perform this task. Later [...]

Validate a Web Application Form using JavaScript Function

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

Hello guys, we have already learned that how to validate a web application form using validation controls. These validation controls are easy to use thats why the developers use these controls. But some time we need to make our web application more fast. As you all know that using more ASP.NET controls makes site more [...]

How to Upload a File in C#.NET

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

In this article I will tell you to Upload a File in C#.NET Web Application. File Uploading is must in various Web Applications. Also some time the developer need to save the Uploaded File in a Folder inside the Project so that the file can be accessible anywhere. So I will also tell you to store the [...]

How to Encrypt and Decrypt String in C#.NET

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

In Cryptography, Encryption is the process of transforming information using an algorithm to make it unreadable to anyone except those possessing special knowledge, usually referred to as a key. The result of the process is encrypted information. And the reversed form of Encryption is called Decryption. The process of making the encrypted information readable again [...]