Quantcast
Channel: Developer's Corner
Browsing all 25 articles
Browse latest View live

Improve Web Application Performance

Introduction:In the IT world, software applications are being rapidly developed. Clients, and so employers, are just looking for those teams/individuals who can build up applications rapidly, just...

View Article



Image may be NSFW.
Clik here to view.

SQL Server Function to Determine a Leap Year

There are few rules to consider when determining when a year is a leap year. For instance, contrary to popular belief not all years divisible by 4 are leap years. For instance, the year 1900 was not a...

View Article

Image may be NSFW.
Clik here to view.

How technology changes us......

View Article

What's New in MSDN Code Gallery?

What's New in MSDN Code Gallery?

View Article

10 of the Biggest Platform Development Mistakes

Just like with golf, technology is as much about ensuring that your bad hits are recoverable as it is ensuring that you make great ones. We’re all going to have failures in our careers but avoiding the...

View Article


Passing Values between ASP.NET Web Forms

Introduction:ASP.NET webforms provide excellent event driven programming model to developers. This does simplifies the overall design of your application but poses some problems of its own. For...

View Article

Delegates in .NET

What is a Delegate?When we talk about delegates in .NET then one thing that comes to our mind is what delegate means to a novice developer. In simple words we can say delegates are a .NET object which...

View Article

Label Formatting

Label1.Text = System.Text.RegularExpressions.Regex.Replace(objListTrn.CourseOutLine, "\n", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);

View Article


Inserting Multiple Record in SQL

DECLARE @intFlag INTSET @intFlag = 1WHILE (@intFlag BEGINUPDATE 'TABLE NAME'SET 'Column Name' = '000000' -- Note: Column Name that you want to update.WHERE ('Column ID' = @intFlag) -- Note: Unique...

View Article


Multiple Duplicate Keys in App.Config Files

In Windows applications written before the advent of .NET, developers used various methods for providing configuration information to applications, such as .INI files, System Registry, etc. All .NET...

View Article

Asp.net Questions

Que:- What is the sequence in which ASP.NET events are processed ?Ans:- Following is the sequence in which the events occur :-* Page_Init.* Page_Load.* Control events.* Page_Unload event.Page_init...

View Article

C# Basic Questions

Que:- What’s the implicit name of the parameter that gets passed into the class’ set method? Ans:- Value, and its datatype depends on whatever variable we’re changing. Que:- How do you inherit from a...

View Article

Generate Serial No. in SQL

Row_Number() over (Order by Emp_ID) as Serial

View Article


To disable autorecovery in .net

To disable autorecovery in .net : Go to Registry and change to 0 (zero) value of the following key:HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL...

View Article

Get Max Number On String

--"TOOL_TYP_CODE" = COLUMN NAME--"DMS_DCT_TOOL_TYPE" = TABLE--"WBD0" = CODE LASTSELECT MAX(CONVERT(INTEGER,SUBSTRING(TOOL_TYP_CODE,5,4)))FROM DMS_DCT_TOOL_TYPEWHERE TOOL_TYP_CODE LIKE 'WBD0%'

View Article


Microsoft Chart Controls for Microsoft .NET Framework 3.5

Microsoft recently released a cool new ASP.NET server control - - that can be used for free with ASP.NET 3.5 to enable rich browser-based charting scenarios:Download the free Microsoft Chart...

View Article

Image may be NSFW.
Clik here to view.

New Features of Visual Studio 2008 for .NET Professionals

1. LINQ SupportLINQ essentially is the composition of many standard query operators that allow you to work with data in a more intuitive way regardless.The benefits of using LINQ are significant –...

View Article


Image may be NSFW.
Clik here to view.

Article 7

What is Multi-Targeting?With the past few releases of Visual Studio, each Visual Studio release only supported a specific version of the .NET Framework. For example, VS 2002 only worked with .NET 1.0,...

View Article

Image may be NSFW.
Clik here to view.

Java Script Debugger in Internet Explorer 8

When Internet Explorer 8 is installed, built-in Java Script debugger ships along. Since this is an in-proc debugger one need not launch a separate app. It has all the familiar Visual Studio 2008...

View Article

Currency Format for Server Side Controls

monthReceipts.Text = String.Format("{0:£#,##0.00}", Convert.ToDecimal(m_accin));m_accin = Parameter Name

View Article
Browsing all 25 articles
Browse latest View live




Latest Images