peaceison
- Karma
- 62
- Created
- March 31, 2012 (14y ago)
- Submissions
- 0
- Shark Bait (shortstories.co.in)
- The Elephant Rope (shortstories.co.in)
- OOPS With CSharp (jinaldesai.net)
- MVC Vs MVP (jinaldesai.net)
While surfing for the differences between MVC (Model View Controller) and MVP (Model View Presenter) I found lots of confusion over the net. Also I found some differences between the two on some sites, but none of them…
- MVC Interview Questions – Deep Dive (jinaldesai.net)
Can you describe ASP.NET MVC Request Life Cycle? 1. Receive request, look up Route object in RouteTable collection and create RouteData object. 2. Create RequestContext instance. 3. Create MvcHandler and pass…
- LINQ To SQL Vs Entity Framework (jinaldesai.net)
Entity Framework is ORM(Object Relational Mapping) introduced by Microsoft. It proves very useful for new developers for it’s simplicity to query against conceptual schema and also has rich feature set. Many time the…
- IQueryable Vs IEnumerable (jinaldesai.net)
IQueryable inherited IEnumerable, so it obviously get all the functionality IEnumerable has. The working style of both is still different. There are still lot many differences exists between the two which impact the…
- Software Design Principles (jinaldesai.net)
- LINQ Interview Questions (jinaldesai.net)
- ASP.NET MVC 3 Interview Questions (jinaldesai.net)
What is MVC? MVC is a framework methodology that divides an application’s implementation into three component roles: models, views, and controllers. “Models” in a MVC based application are the components of the…
- Entity Framework Interview Questions (jinaldesai.net)
What is Entity Framework? Entity Framework is an additional layer between application and database that enables the developers to program against the conceptual application model instead of programming directly against…
- Stop Sharing Session State between Multiple Tabs of Browser (jinaldesai.net)
Scenario: By default all browsers share session state between multiple tabs. So if you logged into one tab with particular site and open internal link of the same site in new tab, you need not to worry to login again.
- Improve Accessibility of Forms with User Input in ASP.NET (jinaldesai.net)
While doing data entry in large web form(or even in forms having small number of fields) people normally not prefer to use a mouse. Some user even found difficult of using such pointing devices whle entering data into…
- SQL Query Interview Questions Using SQL Server (jinaldesai.net)
- Cloud Computing Basic Concepts Interview Questions (jinaldesai.net)
- ASP.NET 4.0 New Features Interview Questions (jinaldesai.net)
Q. What is main focus in Microsoft’s Latest ASP.NET 4.0? Ans. The focus of Microsoft’s latest ASP.NET 4.0 has mainly been on improving the performance and Search-engine Optimization (SEO)
- .NET Framework Version Comparision (jinaldesai.net)
It is frequent usage to see all the .NET Version with it’s features on one page. While surfing on net it is difficult to find or even not a single site provides all version on one plate with features. Following is a try…
- HTML Layout Best Practices (jinaldesai.net)