ViewState: All You Wanted to Know
ASPAlliance.com : The #1 ASP.NET Community : ViewState: All You Wanted to Know
View ArticleServer.Transfer Vs. Response.Redirect
1.Server.Transfer. Where possible, use the Server.Transfer methodinstead of the Response.Redirect method. Response.Redirect sends a response header to the client that causes the client to send a new...
View ArticleEfficient string manipulation
Avoid Returning null Instead of Array, String, or CollectionIn almost all situations except when performance can be an issue (e.g.heavily looped or performance tuned code), null should not be...
View ArticleConversion : datareader into array
private Object[] PopulateReportRecordFromSqlReader(IDataReader reader) { //Add One More for ID int length = reader.FieldCount + 1; Object[] data = new Object[length]; for(int i =0 ; i < length ;...
View ArticleDifference between ODBC and OLEDB
First of all both are API for database access.The differences between these two data access protocols are technical, but in the most general terms, OLE DB is newer, more advanced, and compatible with a...
View ArticlePublic keys and public key tokens
spent some time this morning doing some "dotting the i's work" on my metadata engine. One of the things that I've been holding out implementing for a while because it wasn't particularly important in...
View ArticleEditor tips and tricks in VS.NET
dotnetJiNi.com - Blogs @ Jignesh Desai: "Matching BracesIf you program in c# where you find yourself lost in brace wonderland. All you need to do is to press CTRL + } to match the brace that your...
View Articlemaintain scroll position
/// /// Registers a _javascript method that will bring the focus of the page/// to a specific control when the page loads./// /// The ID of the control to focus on./// The page the control belongs...
View ArticleInterview Questions for C#
C# Interview QuestionsGeneral Questions1. Does C# support multiple-inheritance?No, use interfaces instead.2. When you inherit a protected class-level variable, who is it available to?Classes in the...
View ArticleGood .NET links
http://www.cite-sciences.fr/english/ala_cite/expo/explora/image/mona.htmlhttp://live.indiatimes.com/ppt/120804/index.htmlhttp://msdn.microsoft.com/theshow/Episode020/TranscriptText.asphttp://www.lebonz...
View ArticleMCAD Transcript URL
http://www.microsoft.com/learning/mcp/transcriptsTranscript ID : 683733Access Code : ashishgupta
View ArticleGood .NET links
.NET=========1. What ASP_NET Programmers Should Know About Application Domainshttp://www.odetocode.com/Articles/305.aspx2. WSE...
View Articlegood .NET links
http://www.cite-sciences.fr/english/ala_cite/expo/explora/image/mona.htmlhttp://live.indiatimes.com/ppt/120804/index.htmlhttp://msdn.microsoft.com/theshow/Episode020/TranscriptText.asphttp://www.lebonz...
View ArticleEnsuring all applications run on latest CLR
If you want to ensure that all applications run on the latest CLR installed on your system, you just need to change some registry settings or set a flag in VS.NET 2005 (Beta 1). There is a switch in...
View ArticleGenerate insert scripts from existing data
SET NOCOUNT ONGOPRINT 'Using Master database'USE masterGOPRINT 'Checking for the existence of this procedure'IF (SELECT OBJECT_ID('sp_generate_inserts','P')) IS NOT NULL --means, the procedure already...
View ArticleGoogle's storage strategy
http://www.techworld.com/storage/features/index.cfm?featureid=467
View ArticleWant to know how Gmail works - and whether it will work?
http://www.techworld.com/applications/news/index.cfm?NewsID=1356
View Articleparsing a comma delimited string by stored procedure
This is a Code by which u can send a string delimited by comma(or any delimiter u may choose)containing multiple values to a stored proc to be inserted into the DB. It saves considerable DB...
View Article