Quantcast
Channel: Dot net blog
Browsing latest articles
Browse All 25 View Live
↧

ViewState: All You Wanted to Know

ASPAlliance.com : The #1 ASP.NET Community : ViewState: All You Wanted to Know

View Article


Server.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 Article


Efficient 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 Article

Conversion : 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 Article

Difference 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 Article


Public 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 Article

Yahoo! Mail - ashish_cal5@yahoo.com

Yahoo! Mail - ashish_cal5@yahoo.com

View Article

Editor 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 Article


maintain 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 Article


Interview 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 Article

MSN Spaces link

http://spaces.msn.com/members/netarena/

View Article

Good .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 Article

MCAD Transcript URL

http://www.microsoft.com/learning/mcp/transcriptsTranscript ID : 683733Access Code : ashishgupta

View Article


Interview questions

.NET/C# Questions...

View Article

Good .NET links

.NET=========1. What ASP_NET Programmers Should Know About Application Domainshttp://www.odetocode.com/Articles/305.aspx2. WSE...

View Article


Disabling the back button

use document.location.replace("");

View Article

good .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 Article


Ensuring 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 Article

.NET Reflector site

http://serial.n6k.com/reflecta/doc_net-1.1/System.php

View Article

Generate 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 Article

Google's storage strategy

http://www.techworld.com/storage/features/index.cfm?featureid=467

View Article


Want to know how Gmail works - and whether it will work?

http://www.techworld.com/applications/news/index.cfm?NewsID=1356

View Article


remote-scripting-ajax

http://www.sitepoint.com/print/remote-scripting-ajax

View Article

parsing 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

BasicInstincts

http://msdn.microsoft.com/msdnmag/issues/04/06/BasicInstincts/

View Article

Browsing latest articles
Browse All 25 View Live