NetProgrammingHelp.com
Asp.Net,C#,Ajax,Sql server,silverlight,Javascript codes exambles articles,Programming exambles

'ASP.NET' Category

Creating/Developing Silverlight Data Driven Applications Using Wcf Linq Asp.Net C#

Posted by James Categorized Under: ASP.NET one Commented

Introduction: In this article,i am going to demonstrate how to create a data driven applications using silverlight linq and wcf. Main: Open Visual Studio 2010 with the Silverlight 4 tools installed. Once inside the Integrated Development Environment (IDE), Go to File | New | Project…. In the New Project dialog that appears, select the Silverlight [...]

Deploying Manually Publish XBAP Wpf Browser Application in IIS Asp.Net C# XAML

Posted by James Categorized Under: ASP.NET Add Comments

Introduction: In this article,i am going to demonstrate how to deploy a XBAP (wpf browser) application in IIS using asp.net. Main: Build and run an XBAP application, Create a new virtual directory, Copy the contents xbab bin and paste into the virtual dir, Now try this url in internet explorer, http://localhost/MyFirstXBapApp/MyFirstXBapApp.xbap thatsit! Conclusion: Hope this [...]

Creating Server and client using remoting asp.net c#

Posted by James Categorized Under: ASP.NET one Commented

Introduction: In this article http://netprogramminghelp.com/aspnet/how-to-useperformutilizeaccess-aspnet-remoting-understanding-remoting-concepts/ we allready discussed about remoting.In this article i am going to explain with one sample server and client. Main: This demonstration contains 3 programs, Step 1: Remote Object Creation, Step 2: Remote Server, Step 3: Remote Client, Remote Object Creation, Creating remote object using marshalbyrefobject, using System; using System.Collections.Generic; using [...]

Working with xml data type variable sql server 2008 asp.net c#

Posted by James Categorized Under: ASP.NET one Commented

Introduction: In this article,i am going to explain about how to use the new xml data type as variable, and how to define the xml data. Main: The ‘xml’ datatype helps us to declare xml data in sql server 2008. DECLARE @xmlData AS XML SET @xmlData=’ <Customers> <CustomerID>TELRK</CustomerID> <CompanyName>Telerik, Inc</CompanyName> <ContactName>Stephen Forte</ContactName> <ContactTitle>Sales Representative</ContactTitle> <Address>5–9 [...]

UI element property binding wpf dependency property asp.net c#

Posted by James Categorized Under: ASP.NET 2 Comments

Introduction: In this article i am going to explain about how to create ui element property binding (Dependency property) in wpf. Main: The System.Windows.Data.Binding namespace creates a relationship between two properties: a binding source and a binding target. In this case, the target is the property of the element with the value you want to [...]

creating/first asp.net mvc web application c# asp.net model view pattern

Posted by James Categorized Under: ASP.NET 10 Comments

Introduction: In this article, i am going explain about how to create a asp.net mvc web application using asp.net. Main: For creating asp.net mvc web application please goto file –> new –> project and select asp.net mvc2 template, After clicking on OK, Visual Studio will ask you if you want to create a test project. [...]

Overview of MVC architecture MVC advantages and using in asp.net c#

Posted by James Categorized Under: ASP.NET 2 Comments

Introduction: In this article,i am going explain about the architecture of model-view-pattern, and how we can use this pattern in asp.net applications. Main: Why MVC? Model-view-controller, or MVC in short, is a design pattern used in software engineering. The main purpose of this design pattern is to isolate business logic from the user interface, in [...]

creating menus using xaml wpf asp.net c# silverlight navigation

Posted by James Categorized Under: ASP.NET 2 Comments

Introduction: In this article,i am going to explain about how to create menus/navigation using xaml menu element. Main: See the below demo using menu element, <Window x:Class="NetProgrammingHelp.menu" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="ControlDemos" Height="300" Width="300" > <Grid> <Menu Width="30" Margin="10, 10, 5, 5" HorizontalAlignment="Left" Background="White"> <MenuItem Header="_File"> <MenuItem Header="_New" IsCheckable="true"/> <MenuItem Header="_Open" IsCheckable="true"/> <MenuItem Header="_Close" IsCheckable="true"/> <Separator/> <MenuItem [...]

Using accessing performing coding plinq in asp.net c# linq performance improvements

Posted by James Categorized Under: ASP.NET 9 Comments

Introduction: In this article,i am going to explain about how to use PLINQ to parallelize declarative data access in asp.net linq application. Main: What is plinq? plinq is nothing but spliting the normal linq process into several partitions,and then using tasks to retrieve the data that matches the criteria specified by the query for each [...]

Generating Using Performing ADO.NET entity data model using asp.net c# entity framework linq

Posted by James Categorized Under: ASP.NET 4 Comments

Introduction: In this article,i am going to explain about how to use ado.net entity data model against sqldatabase in asp.net application. Main: What is ado.net entity data model? The Entity Data Model is an Entity-Relationship data model.(Its similar to linq to sql data class), ADO.NET Entity Framework abstracts the relational (logical) schema of the data [...]