DotNetShoutout - Stories tagged with .NET
3
Shouts

Assembly Information

published 782 days, 13 hours, 58 minutes ago posted by BlackWaspBlackWasp 784 days, 16 hours, 51 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Sunday, March 27, 2011 12:00:35 PM GMT
.NET framework assemblies can include a number of assembly attribute values that are shown when viewing the properties of the executable file or DLL. These properties can be set using Visual Studio tools or in the source code. (more)
category: How To | clicked: 0 | comment | | source: www.blackwasp.co.uk
tags: .NET
6
Shouts

Does IntelliTrace support all the .NET Frameworks ?

published 785 days, 7 hours, 55 minutes ago posted by dharadhara 786 days, 22 hours, 1 minute ago
Saturday, March 26, 2011 8:56:13 PM GMT Friday, March 25, 2011 6:49:52 AM GMT
I have been asked this question many times and also found many people have some confusion around different supported version of .NET framework by IntelliTrace debugging. As IntelliTrace is new features of Visual Studio 2010 Ultimate edition and VS 2010 came up with .NET 4.0, so many may got confused... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, IntelliTrace, ASP.NET
5
Shouts

Microsoft Programmers | Localization / Multilingual Support Using Resource Files In .net

published 782 days, 15 hours, 33 minutes ago posted by jebarson007jebarson007 786 days, 22 hours, 32 minutes ago
Tuesday, March 29, 2011 1:17:51 PM GMT Friday, March 25, 2011 6:18:57 AM GMT
Localization for a multilingual application is every developer's nightmare. With .net it is not a tough programming as most of the algorithm is already available. Well in this article we will discuss on how we can achieve localization using resource files. (more)
category: Web Dev | clicked: 6 | comment | | source: www.jebarson.info
tags: .NET, multilingual, demo, Culture, C#, Windows, resource, Localization, file, ASP.NET
9
Shouts

C#/.NET Little Wonders: The ToLookup() LINQ Extension Method

published 782 days, 13 hours, 58 minutes ago posted by BlackRabbitCoderBlackRabbitCoder 787 days, 6 hours, 7 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Thursday, March 24, 2011 10:44:16 PM GMT
Once again, in this series of posts I look at the parts of the .NET Framework that may seem trivial, but can really help improve your code by making it easier to write and maintain. LINQ has added so many wonderful extension methods to our .NET toolbox!  In particular, there are a few methods that are useful for creating a collection from an IEnumerable (more)
category: Web Dev | clicked: 4 | 1 comment | | source: geekswithblogs.net
tags: .NET, Little Wonders, C#, ToLookup, Linq
2
Shouts

.NET and Java J2ee Design pattern interview question :- What is the difference between Decorator and Adapter pattern?

posted by questpondquestpond 788 days, 14 hours, 14 minutes ago
Wednesday, March 23, 2011 2:36:50 PM GMT
Below is the main difference between these two design patterns. Decorator Design pattern (more)
category: Web Dev | clicked: 0 | comment | | source: computerauthor.blogspot.com
tags: .NET, Java J2ee
3
Shouts

Sql Where In with Linq

posted by http://pranayamr.myopenid.com/http://pranayamr.myopenid.com/ 789 days, 10 hours, 38 minutes ago
Tuesday, March 22, 2011 6:13:08 PM GMT
In my current project I am using Linq To Sql ORM as my database layer for doing database operation. Now as I am moving further I got requirement to that I have to filter one table record form another table. For example I have to get list of employee which are either ProjectManger or TeamLead. Sql query to for this is select * from Employee where deptid in (select deptid from Department) To do same thing in Linq To Sql you need to use Contains() on one set of record function as you can see below Dat... (more)
category: How To | clicked: 0 | comment | | source: pranayamr.blogspot.com
tags: .NET, C#
4
Shouts

Find duplicate with Linq

posted by http://pranayamr.myopenid.com/http://pranayamr.myopenid.com/ 789 days, 10 hours, 39 minutes ago
Tuesday, March 22, 2011 6:11:46 PM GMT
In this small post I am going to discuss about how to get list of duplicate items for the collection that we do in sql. For example I have to get list of the email id which is get entered in user table more than one time. SELECT email, COUNT(email) AS NumOccurrences FROM users GROUP BY email HAVING ( COUNT(email) > 1 ) Linq query work same as on the set of collection and which make use of count DataClassesDataContext db = new DataClassesDataContext(); var duplicates = db.Users .GroupBy(i => i.... (more)
category: How To | clicked: 2 | comment | | source: pranayamr.blogspot.com
tags: .NET, C#
3
Shouts

B- Ball, C- Cat, D – dog: - Learning (REGEX) regular expression the easy way.

posted by questpondquestpond 789 days, 14 hours, 23 minutes ago
Tuesday, March 22, 2011 2:27:57 PM GMT
Regex has been the most popular and easiest way of writing validations. The only big problem with regex has been the cryptic syntax. Developers who are working on projects with complicated validation always refer some kind of cheat sheet to remember the syntaxes and commands. (more)
category: Web Dev | clicked: 1 | comment | | source: computerauthor.blogspot.com
tags: .NET, Regular Expression, Regex
9
Shouts

Windows Azure For Developers Task 5: Configuring Virtual Machine sizes

published 789 days, 4 hours, 52 minutes ago posted by dharadhara 789 days, 21 hours, 59 minutes ago
Tuesday, March 22, 2011 11:59:28 PM GMT Tuesday, March 22, 2011 6:52:16 AM GMT
What is specifying Virtual Machine Size? We can specify the size of virtual machine on which Role will be deployed. Size of VM defines CPU core Memory capacity Local file system We can specify Virtual Machine size for the Role. There are two way to specify the VM size Through Service Definition file... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, ASP.NET, Azure
3
Shouts

Backup and Restore database in ASP.NET

posted by dotnetfundadotnetfunda 790 days, 4 hours, 9 minutes ago
Tuesday, March 22, 2011 12:42:33 AM GMT
This article describes an approach to take backup and restore any database that is supported by .NET. In this article, I have taken SQL Server as an example however similar approach can be followed to backup and restore MySql, Oracle and any other databases. (more)
category: Data | clicked: 2 | comment | | source: www.dotnetfunda.com
tags: SQL Server, .NET, ASP .NET
9
Shouts

What is jQuery Connect ? How to use jQuery Connect?

published 790 days, 7 hours, 44 minutes ago posted by dharadhara 790 days, 22 hours, 31 minutes ago
Monday, March 21, 2011 9:07:32 PM GMT Monday, March 21, 2011 6:20:40 AM GMT
This is a jQuery plugin that is used to connect / bind a function to another function. It is more of assigning a handler for another function. Connect is used to execute a function whenever a function from another object or plugin is executed. We can connect to an event of a DOM element too using this... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, jQuery, ASP.NET
2
Shouts

Gizmox VWG Technology Now Available Through the Windows Azure Marketplace

posted by webguiwebgui 794 days, 13 hours, 21 minutes ago
Thursday, March 17, 2011 3:30:26 PM GMT
VWG CloudMove technology allows auto-transposition of client/server application code to the Windows Azure Cloud (more)
category: Architecture | clicked: 0 | comment | | source: www.visualwebgui.com
tags: .NET, Cloud, client/server, cloud applications, Cloud Computing, Azure
5
Shouts

Windows Azure for developers Task4: Error Attaching the debugger in Windows Azure SDK 1.3

published 793 days, 13 hours, 37 minutes ago posted by dharadhara 794 days, 22 hours, 16 minutes ago
Friday, March 18, 2011 3:14:29 PM GMT Thursday, March 17, 2011 6:35:06 AM GMT
I installed Windows Azure SDL V 1.3 . I tried to create a Hello World Azure Application. I pressed F5 and error I got as below , I tried Ctrl+F5 ; running without debugger and did not get above exception but got service unavailable error in the browser On this particular exception a very good discussion... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, ASP.NET, Azure
4
Shouts

Procrustean repository

posted by slo2olsslo2ols 795 days, 20 hours, 31 minutes ago
Wednesday, March 16, 2011 8:19:44 AM GMT
We have already examined the Repository pattern. For example, here and here. Today, let's see how many examples of this pattern force a developer thinks that any repository must include concrete methods and nothing more. Often it is correct and you have pure DDD application. But what if your data source differs from database and has specific methods to modify data? (more)
category: Architecture | clicked: 0 | comment | | source: osmirnov.net
tags: Repository, .NET, Web Service, Sharepoint
5
Shouts

WCF Data Service with SQL Azure

published 795 days, 5 hours, 7 minutes ago posted by kinj312kinj312 796 days, 21 hours, 56 minutes ago
Wednesday, March 16, 2011 11:44:10 PM GMT Tuesday, March 15, 2011 6:54:54 AM GMT
In this article we will expose database from cloud or SQL Azure as WCF Data Service. There two steps mainly involved in this Creating local Database and migrating to SQL Azure Exposing SQL Azure Database as WCF DATA Service Step1: Creating local Database and migrating to SQL Azure Creating Database The... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: beyondrelational.com
tags: .NET, ASP .NET, WCF, Azure
9
Shouts

In what scenarios jQuery can be used? - Hima's blog

published 795 days, 5 hours, 7 minutes ago posted by kinj312kinj312 796 days, 21 hours, 57 minutes ago
Wednesday, March 16, 2011 11:44:10 PM GMT Tuesday, March 15, 2011 6:54:10 AM GMT
To apply CSS static or dynamic To call functions on events Crisscross the documents Manipulation purpose To add animation effects In all the cases we are using JavaScript can be replaced with jQuery in the projects. This can reduce maintenance. (more)
category: Web Dev | clicked: 0 | 1 comment | | source: beyondrelational.com
tags: .NET, jQuery, ASP.NET
6
Shouts

Windows Azure for Developers Task 3: Understanding Windows Azure Application

published 796 days, 16 hours, 29 minutes ago posted by dharadhara 797 days, 21 hours, 37 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Monday, March 14, 2011 7:14:10 AM GMT
An application designed and developed to be as hosted service for windows azure consist of Managed Code XML file for configuration Managed codes are mapped into different Roles XML files are mapped into different configuration settings. If we see the below diagram it explains all the components mainly... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: beyondrelational.com
tags: .NET, ASP.NET, Azure
2
Shouts

Internals to .NET

posted by abhi2434abhi2434 798 days, 10 hours, 32 minutes ago
Sunday, March 13, 2011 6:18:49 PM GMT
C# is a language which most of us like the most. I like to code in C# and want to delve deep into its internals. I wrote few posts too regarding Internals of C# language. Here in this post I am going to jot down all the links on Internal Series.for you. If you havent started reading them, its time to go on with it. Internals to C# Language Basics Internals of Annonymous Method Internals of Exception Handling Internals of C# iterators Internals to Convert and Cast Internals to C# loops Inter... (more)
category: Architecture | clicked: 0 | comment | | source: www.abhisheksur.com
tags: .NET, Delegate, C#, Ado Dot, extension method, internals, iterators, annonymous methods, Event
5
Shouts

C#/.NET Little Wonders: Tuples and Tuple Factory Methods

published 799 days, 1 hour, 45 minutes ago posted by BlackRabbitCoderBlackRabbitCoder 801 days, 4 hours, 4 minutes ago
Sunday, March 13, 2011 3:05:45 AM GMT Friday, March 11, 2011 12:46:51 AM GMT
Once again, in this series of posts I look at the parts of the .NET Framework that may seem trivial, but can really help improve your code by making it easier to write and maintain.  This week, we look at the System.Tuple class and the handy factory methods for creating a Tuple by inferring the types. (more)
category: Web Dev | clicked: 0 | 1 comment | | source: blackrabbitcoder.net
tags: .NET, Little Wonders, C#, Tuple
6
Shouts

Windows Azure for Developers task 2: Adding Cloud Service project to existing ASP.Net Web Application

published 800 days, 16 hours, 47 minutes ago posted by kinj312kinj312 801 days, 22 hours, 39 minutes ago
Friday, March 11, 2011 12:04:09 PM GMT Thursday, March 10, 2011 6:12:09 AM GMT
Imagine we are moving existing Web Application or ASP.Net MVC Web Application to cloud. In that case we need to add cloud service to existing Web Application or ASP.Net MVC Web Application. We have a solution for Web Application is as below, Now right click on the solution and add a new project in the... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, ASP .NET, Azure
Previous 1 2 ... 11 12 13 14 15 16 17 18 19 20 ... 46 47 Next