ebizdom

Stories submitted by ebizdom

Understanding the MVC Application Execution Process(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 10 months ago

The following are the stages of execution for an MVC Web project. In the Global.asax file, Route objects are added to the RouteTable object.The UrlRoutingModule module uses the first matching Route object in the RouteTablecollection to create the RouteData object, which it then uses to create a RequestContext(IHttpContext) object.The MvcRouteHandler creates an instance of the MvcHandler and passes it the RequestContext instance. read more...

add a comment |category: |Views: 49

tags: another

Implementing a Cross Join with LINQ(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 10 months ago

A cross join or Cartesian join is the basis for every other join. The following query will produce all of the combinations of two tables using LINQ read more...

add a comment |category: |Views: 489

tags: another

Comparing elements using LINQ query operators(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 10 months ago

The Standard Query Operators is an API that enables querying of any .NET array or collection. I will compare two folders using query operators. read more...

add a comment |category: |Views: 24

tags: another

Form validation with ASP.NET MVC(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 10 months ago

This topic shows you the MVC features that support Form validation. When a user submits a form, the form data is passed to a controller action method by using the ViewDataDictionary collection. The ViewDataDictionary has a ModelState property that contains a collection of ModelState objects. For each model that is defined in an MVC application, the MVC framework creates a corresponding ModelState object and adds it to the collection. read more...

add a comment |category: |Views: 23

tags: another

Querying Active Directory with LINQ(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 10 months ago

Today, i will show you Querying Active Directory with LINQ. read more...

add a comment |category: |Views: 256

tags: another

Querying with Entity SQL(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 10 months ago

CreateQuery(T) Method creates an ObjectQuery(T) in the current object context by using the specified T-SQL-like query language. I will replace ADO.NET Entity Framework example with Entity SQL Query. read more...

add a comment |category: |Views: 43

tags: another

AJAX using jquery and ASP.NET(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 10 months ago

jQuery is a lightweight JavaScript library and can be downloaded from http://www.jquery.com. I’ll show you how to use jQuery to call a page method without using the ScriptManager. read more...

add a comment |category: |Views: 11

tags: another

Creating Word file using C# and Open XML SDK(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 10 months ago

Recently, I created a webservice to generate the word and excel files using C# and Open XML SDK. read more...

add a comment |category: |Views: 308

tags: another

Consuming RSS Feed in MVC ASP.NET(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 10 months ago

We will build a MVC application that will consume an RSS feed. The SyndicationFeed class from System.ServiceModel.Syndicatation makes it easy to work with RSS Feed. The code below uses an RSS feed from weblogs.asp.net to display asp.net weblogs on a page. read more...

add a comment |category: |Views: 38

tags: another