Blogs about: Aspnet 11
Featured Blog
Show multiple columns in a dropdown with proper alignment
The problem : We have an ID column and a Name column in our database. We want to show both in a dropdown but if you concatenate both, you will notice that the alignment goes out of whack. eg. 1 … more »
Nishant Pant's Techie Blog
Some difficulties of learning ASP.NET
findingsteve wrote 2 weeks ago: Difficulties 1: Tools Say, in your company, you are using Visual Studio 2003 and in order to improve … more »
Debug vs Release Build
findingsteve wrote 4 weeks ago: During implementation stage, what we normally do is we build (or compile) it as usual and then copy … more »
Registering ASP.NET on IIS after installing the .NET Framework
aliraza wrote 1 month ago: Usually this problem occur when we install iIs after installation of Visual studio or .net framework … more »
Inline/Dynamic SQL vs Stored Procedures (Just 5 short summarized points)
findingsteve wrote 1 month ago: After reading some articles and discussions on this topic, my conclusion is: It is a myth to use all … more »
Organize your code with Region
findingsteve wrote 1 month ago: When you have many related functions, you can consider to group them together using Region. Example … more »
Show multiple columns in a dropdown with proper alignment
Nishant Pant wrote 1 month ago: The problem : We have an ID column and a Name column in our database. We want to show both in a drop … more »
Unable to read the project file. The system cannot find the path specified.
Vishal Reddy wrote 2 months ago: I have come across this problem many time always forgotten how I solved it. This might be 5th -6th t … more »
How to remove duplicate from string array in .net
aliraza wrote 2 months ago: In one case i have to right a method to remove duplication from array of strings. i write this code … more »
How to filter uploader control using client side script in asp.net
— 1 comment
aliraza wrote 3 months ago: For any client side action we have to choose a scripting language to build our logic. Let us go for … more »
Implementing Data Grid CheckBox Column Step by Step
— 3 comments
antigenius wrote 4 months ago: Download GridDemo - 19.87 KB Download SelectionColumnSource - 7.04 KB Introduction Purpose … more »
How to add dynamic meta tags in asp.net
aliraza wrote 5 months ago: Hi all you can add meta tags like that in page HtmlMeta _MyName = new HtmlMeta(); _MyName.Name = … more »
How to get uploaded image dimensions in asp.net
— 1 comment
aliraza wrote 5 months ago: I used following code to get uploaded image dimensions . Where flLogoUplaoded is name of asp .net … more »
Internet Explorer cachea las ventanas modales
Manuel Trejo wrote 5 months ago: Usando el comando de javascript showmodaldialog() (solo soportado por Windows) para mostrar ventanas … more »
How to retrieve a list of Application Pools and their configured identities on your IIS box.
Nishant Pant wrote 5 months ago: I wrote this script which will give you a list of Application pools defined on your IIS 6.x box and … more »
Enumerate members of an Active Directory group in .Net
Nishant Pant wrote 5 months ago: My previous post [Click Link] shows how to enumerate members of an AD group using an LDAP query wr … more »
Session vs ViewState
aliraza wrote 5 months ago: Session State is useful for storing values that must be persisted across multiple pages by the same … more »
URL Encoding in asp.net
aliraza wrote 6 months ago: One of way while transferring data from one page to other page is Querystring. But one problem is wi … more »
How to make better URI
— 1 comment
aliraza wrote 7 months ago: It should be as short as possible. Don’t sacrifice consistency or obviousness, but be brief. … more »
How to write word document in asp.net
aliraza wrote 7 months ago: You can add follwing code at page level function and called in button or page load function Void G … more »
