How to Create and Delete Folder Dynamically in ASP.NET

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

As you all know while developing a big application in asp.net everybody use Folders inside the application to keep the files separate. The Folder make an important for the developer sometime. In this Article I will tell you that how can you create as well as delete the folders inside your asp.net application. First to [...]

How to Split and Merge a String Value

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

Today we will discuss two main operation that can be performed with String while developing an application in ASP.NET. First let me explain these two terms. Split is the term in which we break a string value to multiple string values. The splitting is performed with a specific separator  value. Suppose we need to split a date [...]

How to change the format of DateTime variable in ASP.NET

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

This article will help you to change the display format of a DateTime variable in C#.NET. As you all know that DateTime variable is used to store date and time of any particular. and some time we need to change the format of this value. For Example some time we need to display only Date [...]

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 call a JavaScript Function from ASPX Code

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

While developing applications in ASP.NET some time we need use a JavaScript Function in the Source part of the web page. As we know that using JavaScript inside the application reduces the loading time of the particular web page. But some time we need to call the JavaScript Function from the code behind or we [...]