yaneshtyagi

Stories submitted by yaneshtyagi

Implementing Delete Confirmation Dialog in the ListView (ASP.Net) - 2(weblogs.asp.net)

submitted by yaneshtyagiyaneshtyagi(175) 2 years, 5 months ago

This article describes how to implement delete confirmation dialog box in ListView control of asp.net. The author also described using resource file to display delete confirmation message in different language. A link to download the code (complete VS project) is also provided. read more...

add a comment |category: |Views: 26

tags: another

.Net Framework Fx 4.0 - What's New(weblogs.asp.net)

submitted by yaneshtyagiyaneshtyagi(175) 3 years ago

Describes new features of .Net Framework 4.0 and Visual Studio 2010. read more...

add a comment |category: |Views: 25

tags: another

Code Snippet for Automatically Implemented Property (weblogs.asp.net)

submitted by yaneshtyagiyaneshtyagi(175) 3 years, 3 months ago

Explains how you can create a code snippet and provides snipper for Automatically Implemented Property . public int MyProperty { get; set; } read more...

add a comment |category: |Views: 5

tags: another

Mystery of Not Operator in VB.Net (weblogs.asp.net)

submitted by yaneshtyagiyaneshtyagi(175) 3 years, 3 months ago

(Not 2) = -3. Strange! VB.net evalueates (2) as True and (Not 2) is also evaluated as true. Yanesh Tyagi explains this strange behavior in this article. read more...

add a comment |category: |Views: 20

tags: another

Introdduction to ASP.Net Session(yaneshtyagi.wordpress.com)

submitted by yaneshtyagiyaneshtyagi(175) 3 years, 4 months ago

This article describes the ASP.net session to the beginners. read more...

add a comment |category: |Views: 7

tags: another

Getting Browser Information and Capabilities in ASP.Net(yaneshtyagi.wordpress.com)

submitted by yaneshtyagiyaneshtyagi(175) 3 years, 4 months ago

The HttpBroserCapability object has several properties which provide the information about the browser type, version and features supported by browser. This article explains how to use this object. read more...

add a comment |category: |Views: 6

tags: another

Putting ASP.net Application In Offline Mode Using app_offline.htm(yaneshtyagi.wordpress.com)

submitted by yaneshtyagiyaneshtyagi(175) 3 years, 4 months ago

When ASP.Net found a file names app_offlinne.htm in the root of a web application directory, it shut-down the application, unload the application domain from the server, and stop processing any new incoming requests for that application. ASP.NET also then respond to all requests for dynamic pages in the application by sending back the content of the app_offline.htm file (for example: you might want to have a “site under construction” or “down for maintenance” message). read more...

add a comment |category: |Views: 29

tags: another

Converting Text into Image On-The-Fly (C#)(weblogs.asp.net)

submitted by yaneshtyagiyaneshtyagi(175) 3 years, 4 months ago

This code converts the text into image and displays it onto the web page without saving it into a file on the disk. It also takes care of text wrapping. TextToImageConvertor can either be used in a web page or in a module. read more...

2 comments |category: |Views: 737

tags: another

Implementing Delete Confirmation Dialog in ListView Control (ASP.Net) (weblogs.asp.net)

submitted by yaneshtyagiyaneshtyagi(175) 3 years, 4 months ago

One of the lacking feature in the listview control is delete confirmation. If somebody clicks on the delete button by mistake, there is no way to cancel the delete action. To solve this issue, I used client side JavaScript and confirm function. read more...

add a comment |category: |Views: 67

tags: another

Implementing Sorting in Generic List (List<T>) (weblogs.asp.net)

submitted by yaneshtyagiyaneshtyagi(175) 3 years, 4 months ago

Describes how to sort a generic list using its sort method. This also works for the types that does not have a default sorting mechanism. A simple two-line trick does the magic. read more...

add a comment |category: |Views: 48

tags: another

Scott Guthrie’s ASP.net MVC Tutorial Links « Yanesh Tyagi writes …(yaneshtyagi.wordpress.com)

submitted by yaneshtyagiyaneshtyagi(175) 3 years, 8 months ago

Links of the ScottGu's 4-part ASP.Net MVC tutorial. LAso has links of other MVC articles. read more...

add a comment |category: |Views: 26

tags: another