yaneshtyagi

Stories kicked 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

Understanding Safe Database Synchronization(weblogs.asp.net)

submitted by joycscjoycsc(1597) 3 years, 3 months ago

Data or content synchronization is one of the classic problems in software world. It becomes very trivial point while working on software production, where production data and schema needs to be synchronized with live data and schema. Having some basic conceptual complexity, developers often get afraid to use any automated tool considering the risk factors to lose of data or content. Having a clear specific idea on content synchronization will greatly help to reduce lots of confusion and fear. read more...

2 comments |category: |Views: 303

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

9 Examples of creating a fast and responsive UI with multi-threading(goneale.wordpress.com)

submitted by gonealegoneale(1055) 3 years, 3 months ago

9 C# examples of creating a fast and responsive UI with multi-threading, very clear and streamlined examples to get up and running quickly. read more...

add a comment |category: |Views: 907

tags: another

REST Overview(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 3 months ago

REST stands for Representational State Transfer,is an architectural style where you can build the software system in which clients(user agents) can make requests to the services[end points]. REST one of the way to implement the client\server architectural style. REST can be used to build software applications in which clients can make requests of services. read more...

add a comment |category: |Views: 30

tags: another

A .NET Open Source Project Retrospective: Json.NET(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 3 years, 3 months ago

A look inside the development of a .NET open source project. What went right and what went wrong and lessons learnt along the way. read more...

add a comment |category: |Views: 294

tags: another

Action, Func, Predicate - what's going on?(blogs.vertigo.com)

submitted by brandewinderbrandewinder(530) 3 years, 3 months ago

This post covers Action<T>, Func<T>, Predicate<T> and shows them in action. These delegates are generalization (abstractions?) over some common method signatures and you might find them very handy. Besides making LINQ possible, they should help you stop writing your own custom delegates and replace them with these generic ones. read more...

1 comment |category: |Views: 1757

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

Checklist for high quality websites(blog.madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 3 years, 4 months ago

A checklist for things to do that will highten the quality of any website. read more...

add a comment |category: |Views: 543

tags: another