Sign In
Sanjeetosphere
Sanjeet's technical outbursts.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
ajax
Business Object
C# 3.0
Custom Paging
Enterprise
GridView
LINQ
ObjectDatasource
Personal
Software Design
xmlhttp
xmlhttprequest
Archive
Archives
July 2008
(1)
May 2008
(1)
September 2007
(3)
June 2007
(5)
May 2007
(1)
April 2007
(5)
MSDN Blogs
>
Sanjeetosphere
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Sanjeetosphere
Coherence With .Net
Posted
over 4 years ago
by
MSDNArchive
5
Comments
In one of my recent projects I was implementing Enterprise level caching using Coherence . As you might be aware its written in Java and expects all the objects (that needs to be cached in it) in a Portable Object Format. This is to allow interoperability...
Sanjeetosphere
A walk in the park
Posted
over 4 years ago
by
MSDNArchive
1
Comments
I have written some Domain specific blogs. You can find them here: http://sanjeetsahay.blogspot.com I will resume my postings on Patterns and Frameworks soon. Till then :)
Sanjeetosphere
Creational - Factory Pattern
Posted
over 5 years ago
by
MSDNArchive
1
Comments
In continuation to my previous post, I am presenting you a sample code that implements Factory Pattern. The overview: - We are using the Person, Gift and Letter classes as we did in the Abstract Factory Pattern implementation. This is just to show how...
Sanjeetosphere
Software Design Patterns - Creational Patterns
Posted
over 5 years ago
by
MSDNArchive
1
Comments
This happens to be the first of my articles on Software Design Patterns. I will present some basics followed by implementation of the pattern. These patterns help make a system independent of how its objects are created, composed and represented. A class...
Sanjeetosphere
Creational - Abstract factory Pattern
Posted
over 5 years ago
by
MSDNArchive
1
Comments
In continuation to my previous post, I am presenting you a sample code that implements Abstract Factory Pattern. The overview: - This implementation contains a factory called Person. - The Product/Entity class is represented by 2 abstract classes called...
Sanjeetosphere
How To: Use SqlMetal.exe to Create a Class from XML and Database
Posted
over 5 years ago
by
MSDNArchive
5
Comments
If you don't have Visual C# Codename Orcas Express Edition installed on your development machine, and you are using Visual Studio 2005 with the LINQ 2006 CTP , then SqlMetal.exe is something that you must lookout for. It is the O/R mapper that you must...
Sanjeetosphere
How To: Seemlessly Export Data From Database to XML using LINQ
Posted
over 5 years ago
by
MSDNArchive
1
Comments
While exploring a number of neat features available in the Visual C# Orcas Express Edition, you will see the following: There is no namespace like DLinq, or XLinq anymore, they are replace with more meaningful System.Data.Linq and System.Xml.Linq However...
Sanjeetosphere
LINQ Lists - Anonymous Methods and Lambda Expressions
Posted
over 5 years ago
by
MSDNArchive
1
Comments
Year: 2005 A.D. The C# 2.0 specification is released in the month of September. It talks about "new" features. We were introduced with a new "in-line" feature of using delegates. We called it "Anonymous Methods". Needless to say, its named as such because...
Sanjeetosphere
The Var Of The Worlds
Posted
over 5 years ago
by
MSDNArchive
1
Comments
Hello folks, This time we will explore LINQ over a series of Posts. As you must be knowing the age old "var" is back. But, is it the same old var that used to be in VB 6.0 days? Precisely its not the same it has got a number of new features: - You have...
Sanjeetosphere
How To: Create an efficient data driven page with Business Objects, GridView, Custom paging, and AJAX
Posted
over 5 years ago
by
MSDNArchive
4
Comments
Preface: I have seen a large number of cases where the customer complaint of performance and scalability issues when they create/manage a data-aware application. That’s when I decided that I should come up with something that is concise, efficient, and...
Sanjeetosphere
Calling a ASP.Net 2.0 Webservice from an XBAP
Posted
over 5 years ago
by
MSDNArchive
1
Comments
Today, I was trying out a couple of things with WPF. Here is the scenario: I created a simple XML file called "People.xml". My objective was to use this file as a database for my first data aware XBAP. I had a lot of problems making it to work. The reason...
Sanjeetosphere
There is something about Delegates
Posted
over 5 years ago
by
MSDNArchive
3
Comments
Whenever you might have started reading about Delegates, the first line you read is : "Delegates are function pointers in C#" Now what is a function pointer? and how is it going to make my life any easier? Lets understand function pointers now. Function...
Sanjeetosphere
AJAX in a nutshell : It can't get any simpler folks
Posted
over 5 years ago
by
MSDNArchive
1
Comments
1. Ajax basics - "Asynchronous JavaScript and XML," is a web development technique for creating interactive web applications. The intent is to make web pages feel more responsive by exchanging small amounts of data with the server behind the scenes, so...
Sanjeetosphere
There's something about Async - 1
Posted
over 5 years ago
by
MSDNArchive
1
Comments
An overview of Asynchronous-ness: Getting started You must have read in a number of blogs/articles that asynchronous operations are good for your UI responsiveness. It sounds good too. But, for last many months I have been working hard to put them in...
Sanjeetosphere
XMLHttp : Step 2
Posted
over 5 years ago
by
MSDNArchive
2
Comments
How to call Webserver methods using Javascript If you are planning to call your own ASP.Net webservice from client side using XMLHttp you need to configure its web.config. Add the following inside <system.web>: <webservices> <protocols>...
Sanjeetosphere
XMLHttp : Step 1
Posted
over 5 years ago
by
MSDNArchive
4
Comments
What is XMLHttpRequest? - It is an API that is used by JavaScript and some other scripting languages to transfer data (XML/plain text) "to-and-from" a web server over HTTP. - You can make a call from an html page also. In the following example we are...
Page 1 of 1 (16 items)