learndotnet123
Name: learndotnet123
Score: 1,730
Last Seen: 738 days, 5 hours, 53 minutes ago
Member Since: 20 September, 2010
DotNetShoutout
atom rss
3
Shouts

Advanced Dotnet Tutorial: Tracing in .Net 2.0

posted by learndotnet123learndotnet123 738 days, 5 hours, 54 minutes ago
Thursday, May 12, 2011 8:29:11 AM GMT
Tracing is a new feature given in .Net 2.0 that helps the user to view different steps occurred while execution of a single ASP.net Page at run time. Tracing Information help you to investigate errors or unwanted results while ASP.Net process a page request. By default tracing is disabled so if you want to view the tracing information you have to enable the tracing. Tracing can be of two types Page Level Tracing and Application Level Tracing. Page Level Tracing: Gives information about a p... (more)
category: Web Dev | clicked: 0 | comment | | source: advanceddotnettutorial.blogspot.com
tags: tracing, ASP.NET
3
Shouts

Advanced Dotnet Tutorial: CSS: Change Image of Button On Hover and Disabled

posted by learndotnet123learndotnet123 739 days, 2 hours, 58 minutes ago
Wednesday, May 11, 2011 11:25:09 AM GMT
This article helps to understand how CSS is changed automatically when a button is disabled from the server side. Further, how to define CSS when a user hovers over an element. Step 1: Define CSS for button Define two css (i.e. one for hover and another normal) for each button. Button1: Which will enable 3rd button CSS for button1 when it is hovered by the user. Here CButtonMakeEnable:hover does it all; :hover defines what css is applied when an element is hovered. .CButtonMakeEnable:hover ... (more)
category: Web Dev | clicked: 3 | comment | | source: advanceddotnettutorial.blogspot.com
tags: image, CSS, hover, ASP.NET
2
Shouts

Advanced Dotnet Tutorial: Editing the Path of any Shape in XAML Silverlight

posted by learndotnet123learndotnet123 741 days, 7 hours, 31 minutes ago
Monday, May 09, 2011 6:51:28 AM GMT
In Expressing Blend we are not only limited to draw some primitives line rectangle, line or ellipse. Expression Blend help us to create any shape. Expression Blen has two tools named Pen and Pencil which let us to create path and selection cursor let us to modify the shape. Let's create any shape using these tools.Follow the steps:Step 1Create a new project in Expression Blend and draw a rectangle and fill any color.Step 2Using selection tool select the rectangle and click on Object > Path > Convert to P... (more)
category: Metro | clicked: 1 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight, editing", Shape, XAML
2
Shouts

Advanced Dotnet Tutorial: Add a polygon to the Silverlight Bing Map

published 743 days, 17 hours, 19 minutes ago posted by learndotnet123learndotnet123 744 days, 9 hours, 35 minutes ago
Friday, May 06, 2011 9:03:41 PM GMT Friday, May 06, 2011 4:47:48 AM GMT
MapPolygon:The MapPolygon class accepts a list of points that define its shape and location on the map. MapPolygon class is used to represent a polygon on the map. Namespace: Microsoft.Maps.MapControl Assembly: Microsoft.Maps.MapControl (in microsoft.maps.mapcontrol.dll) Create Silverlight application: Open Visual Studio 2010. Go to File => New => Project. Select Silverlight Application from the installed templates Silverlight.  Enter the Name and click on Ok. Click OK. Go to C:\Pr... (more)
category: Metro | clicked: 10 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight, Bing Maps, polygon
2
Shouts

Advanced Dotnet Tutorial: Getting started with testing an ASP.NET Webforms Application (MVP Pattern)

posted by learndotnet123learndotnet123 745 days, 7 hours, 47 minutes ago
Thursday, May 05, 2011 6:35:29 AM GMT
In this article we explore how unit tests are created in an ASP.NET WebForms Application. Although there are sections that are specific to the MVP pattern, there are also a few tips and guidelines about Unit Testing of a Web Application in general. The purpose of this article is to explain how to test an ASP.NET Webforms Applications. How the Model-View-Presenter pattern is helping us in that, how do we use mock-up libraries to simulate objects like HttpContext and how do we use Visual Studio 2010 Tes... (more)
category: Web Dev | clicked: 14 | comment | | source: advanceddotnettutorial.blogspot.com
tags: WebFormsMVP, Testing, ASP.NET
2
Shouts

Advanced Dotnet Tutorial: CUDA integration with C#

posted by learndotnet123learndotnet123 746 days, 7 hours, 27 minutes ago
Wednesday, May 04, 2011 6:56:20 AM GMT
CUDA enabled hardware and .NET 4 (Visual Studio 2010 IDE or C# Express 2010) is needed to successfully run the example code. Visual C++ Express 2008 has been used as a CUDA C editor (2010 version has changed custom build rules feature and cannot work with that provided by CUDA SDK for easy VS integration). Part 1: Environment and tools configuration for CUDA CUDA is a general purpose parallel computing architecture introduced by NVIDIA. CUDA programs (kernels) run on GPU instead of CPU for bette... (more)
category: Web Dev | clicked: 17 | comment | | source: advanceddotnettutorial.blogspot.com
tags: CUDA, c sharp, integration
2
Shouts

Advanced Dotnet Tutorial: Playing and Controlling Video Playback in XAML Silverlight

posted by learndotnet123learndotnet123 747 days, 9 hours, 31 minutes ago
Tuesday, May 03, 2011 4:51:25 AM GMT
Using videos in a Silverlight based application is a very exciting feature that come early Silverlight 2. Today we see the most extended Silverlight specially Microsoft added GPU Hardware Acceleration for video and bitmap in Silverlight 3 and now Silverlight 4 supports the output protection for video and audio. How to Play Video  To play the video, we can simply drag the compatible [List of Supported Media Formats] video file on the development stage. Now, if you add videos in the development stage and ... (more)
category: Metro | clicked: 0 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight, controlling, XAML, video playback
3
Shouts

Advanced Dotnet Tutorial: Silverlight Bing Map Control in SharePoint 2010

posted by learndotnet123learndotnet123 748 days, 9 hours, 41 minutes ago
Monday, May 02, 2011 4:41:55 AM GMT
Silverlight Bing Map Control in SharePoint 2010 In this article we will be seeing how to use Silverlight Bing map control in SharePoint 2010. Bing Map Developer Account: Open https://www.bingmapsportal.com/.  Go to New User section and click on Create.  Sign in using Windows Live ID.Enter the account details and click on Save.  Bing Map Developer account will be created successfully. Bing Maps Key: Bing Maps Key should be created to authenticate your Bing Maps applicati... (more)
category: Metro | clicked: 10 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight, Bing Maps, SharePoint 2010
2
Shouts

Advanced Dotnet Tutorial: Security model of Internet Information Services for ASP.NET

published 750 days, 23 hours, 47 minutes ago posted by learndotnet123learndotnet123 751 days, 9 hours, 38 minutes ago
Friday, April 29, 2011 2:35:31 PM GMT Friday, April 29, 2011 4:45:04 AM GMT
IIS has its own security configuration and even for any request reaching the ASP.NET runtime, IIS verifies the request with it's own security configuration. So the first gatekeeper in the ASP.NET security pipeline is actually IIS. So let us understand those security mechanisms which IIS implements: Authentication: IIS support following authentication mechanism Basic authentication:Digest authenticationPassport authenticationWindow authenticationCertificate authentication Point to remember: Any a... (more)
category: Web Dev | clicked: 1 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Security model, IIS, ASP.NET
2
Shouts

Advanced Dotnet Tutorial: Database Binding with Accordion Control

posted by learndotnet123learndotnet123 752 days, 9 hours, 39 minutes ago
Thursday, April 28, 2011 4:43:46 AM GMT
This article demonstrates how to bind an Accordion Control with a database in ASP.Net using Ajax. We are assuming that you have already completed the installation of the Ajax Toolkit as well as have a basic understanding of coding. About the control: The Accordion is a web control that allows you to provide multiple panes and display them one at a time. It is like having several CollapsiblePanels where only one can be expanded at a time. The Accordion is implemented as a web control that con... (more)
category: Web Dev | clicked: 7 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Accordion, Binding, Database, ASP.NET
2
Shouts

Advanced Dotnet Tutorial: Hosting Mobile WebSite Under IIS

posted by learndotnet123learndotnet123 753 days, 9 hours, 54 minutes ago
Wednesday, April 27, 2011 4:28:46 AM GMT
First we have to create a mobile web application. For how to create a mobile web site see my previous article Developing Mobile Pages. Once we have created our mobile pages the testing of the mobile pages is not as easy as you think; for testing of mobile pages you can use desktop browsers as well as Mobile Emulators. With desktop browsers you can test by direst debugging application but in mobile emulators first we have to host our website under IIS. For testing mobile pages in an emulator we hav... (more)
category: Web Dev | clicked: 1 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Mobile Website, Hosting, IIS, ASP.NET
2
Shouts

Advanced Dotnet Tutorial: What is Foreground or Background Thread

posted by learndotnet123learndotnet123 754 days, 9 hours, 51 minutes ago
Tuesday, April 26, 2011 4:32:04 AM GMT
Threading is a concept we all understand and most of us would have implemented them in real world applications. Here is one more explanation of inner level detail on threads - that is Foreground and Background threads. Types of Threads Basically, there are two types of threads which fall into:Foreground ThreadBackground Thread Foreground Thread Foreground threads are threads which will continue to run until the last foreground thread is terminated. In another way, the application is closed wh... (more)
category: Web Dev | clicked: 0 | comment | | source: advanceddotnettutorial.blogspot.com
tags: foreground thread, background thread, c sharp
2
Shouts

Advanced Dotnet Tutorial: Pop Search Form Control in Silverlight

published 754 days, 20 hours, 9 minutes ago posted by learndotnet123learndotnet123 755 days, 9 hours, 36 minutes ago
Monday, April 25, 2011 6:14:04 PM GMT Monday, April 25, 2011 4:46:36 AM GMT
Silverlight is a new and powerful browser plug-in that works with Mac OS, Windows and Linux. It helps you create rich web application that is safe, secure and scalable cross-platform. This article will use Visual Studio 2008 to create Silverlight pop search form control. System Requirement This application requires the user to have copy of Visual Studio 2008 Microsoft Silverlight 2 Tools for Visual Studio 2008 SP1 (http://www.microsoft.com/downloads/details.aspx?FamilyId=c22d6a7b-546f-4407-8ef6-d60... (more)
category: Metro | clicked: 5 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight, Control, popup search
2
Shouts

Advanced Dotnet Tutorial: Use of Stopwatch Class in C#

published 753 days, 16 hours, 20 minutes ago posted by learndotnet123learndotnet123 757 days, 45 minutes ago
Tuesday, April 26, 2011 10:03:13 PM GMT Saturday, April 23, 2011 1:38:00 PM GMT
Using the following line a new stopwatch object will be created:System.Diagnostics.Stopwatch myStopWatch = newSystem.Diagnostics.Stopwatch();The "Start" method will start the stopwatch: myStopWatch.Start();The "Stop" method will stop the stopwatch:myStopWatch.Stop();To display the value of the stopwatch then use the code shown below:/// myStopWatch.Elapsed.Hours.ToString();/// myStopWatch.Elapsed.Minutes.ToString();/// myStopWatch.Elapsed.Seconds.ToString(); ///  MyStopWatch.Elapsed.Milliseconds.ToSt... (more)
category: Web Dev | clicked: 3 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Visual C# 2008, Stopwatch
2
Shouts

Advanced Dotnet Tutorial: Resource Management In Silverligt 3

posted by learndotnet123learndotnet123 761 days, 9 hours, 21 minutes ago
Tuesday, April 19, 2011 5:01:27 AM GMT
The files required for any Application to run other than project related files are called resources. It can be a text file or image file or any other file. In this article, we will be seeing how images can be accessed in various ways in a Silverlight application. Types of Resource Management There are 3 ways we can manage resources such as: Add Image as ResourceAdd Image as Content Add Image as Resource in an external assemblyCreate a Silverlight Project Figure 1.1 Creating Silverlight P... (more)
category: Metro | clicked: 0 | comment | | source: advanceddotnettutorial.blogspot.com
tags: resource management, Silvelight 3, XAML
2
Shouts

Advanced Dotnet Tutorial: Splash Screen in Silverlight 3 Application

posted by learndotnet123learndotnet123 762 days, 10 hours, 2 minutes ago
Monday, April 18, 2011 4:20:46 AM GMT
If a Silverlight application is small, it will be downloaded quickly and appear in the browser. If a Silverlight application is large, it may take a few seconds to download. As long as your application takes longer than 500 milliseconds to download, Silverlight will show an animated splash screen. Splash Screens can be used for the following purposes: To show the Progress of downloading the xap file. (By Default) Copyright Information Custom Animation.Crating Silverlight Project Fire up Visual ... (more)
category: Metro | clicked: 5 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silvelight, Splash Screen, XAML
2
Shouts

Advanced Dotnet Tutorial: InitParams in Silverlight

posted by learndotnet123learndotnet123 765 days, 8 hours, 21 minutes ago
Friday, April 15, 2011 6:02:01 AM GMT
If you are developing a Silverlight Application, and you need to pass some parameters inside – for example a key and value pair then we can pass the key value pair from the aspx page itself. We will see how we can do this in Silverlight. Create a Silverlight Project Figure 1.1 Creating Silverlight Project Adding parameters Open the "InitializingParametersTestPage.aspx" and find the tag tag (more)
category: Metro | clicked: 0 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight, initparams
2
Shouts

Advanced Dotnet Tutorial: Plane Projection in Silverlight 3

published 767 days, 17 hours, 21 minutes ago posted by learndotnet123learndotnet123 769 days, 9 hours, 34 minutes ago
Tuesday, April 12, 2011 9:01:54 PM GMT Monday, April 11, 2011 4:48:57 AM GMT
In this article we will see Projection in Silverlight, which describe how to transform an object in 3-D space using perspective transforms. In this article we will use Plane Projection, which represents a perspective transform (a 3-D-like effect) on an object. Creating Silverlight Project Fire up Visual Studio 2008 and create a Silverlight Application. Name it as PlaneProjectionInSL3. Open the solution in Expression Blend 3 to design the application. Our basic aim of the sample is to rotate... (more)
category: Metro | clicked: 2 | comment | | source: advanceddotnettutorial.blogspot.com
tags: plane projection, Silerlight 3.0
2
Shouts

Advanced Dotnet Tutorial: File Uplalod from Silver Light application to server location using WCF

posted by learndotnet123learndotnet123 772 days, 3 hours, 49 minutes ago
Friday, April 08, 2011 10:33:59 AM GMT
This article will explain, How to upload a file from SilverLight client to server location using WCF. To achieve above task, follow the below steps. Assume, that Reader has a basic concept of WCF Silver Light Cross Domain Issue Hosting of WCF Service Pictorial representation of output Follow the Steps below Step 1: Create and Host the WCF Service. a. Create the Contract. This got only one method, which is taking as input a file to upload. IService1.svc using System; us... (more)
category: How To | clicked: 1 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight Application, File upload, WCF
2
Shouts

Advanced Dotnet Tutorial: Hello Program in Silverlight using Expression Blend & Visual Studio

posted by learndotnet123learndotnet123 772 days, 9 hours, 26 minutes ago
Friday, April 08, 2011 4:56:53 AM GMT
Install Expression Studio (it includes Blend, Encoder, Design, Web applications) for Visual Studio so that we can start developing Silverlight by using either Visual Studio or Expression Blend. Finally, what we have here is, Expression Blend adds the features to existing Visual Studio.Creating "Hello" Program using Expression Blend Let's start Expression Blend; you will get the following splash screen at first. This screen loads all necessarily program files to memory for building Silverlight... (more)
category: Metro | clicked: 0 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight, experssion blend, hello program, Visual Studio
Previous 1 2 3 4 5 6 7 Next