Browse by Tags

Tagged Content List
  • Wiki Page: Finding Full Qualified Path for ASP.NET App_Data Folder

    Recently I had a requirement to add and use some xml files in my application and i pleased these xml files in ASP.NET special folder App_Data. As we know the benefits of adding this folder in our application or for shortly I described in below couple of points. App_Data is essentially a storage...
  • Wiki Page: Sending SMS using C#

    Step 1: Create a new project in Microsoft Visual Studio 2008 (File -> New -> Project -> Visual C# -> Console Application). Give SMS_Sender name and also specify the location where to store the project. Step 2: Now add a new item to the project we just created (Project -> Add...
  • Wiki Page: How to Create a Localized Control in C#

    Table of Contents Introduction The Basics Resources Sample Code Introduction Increasingly more and more applications require localization and globalization. In order to accommodate these requirements a programmer will often have to customize a control in order to meet those requirements. The...
  • Wiki Page: Connecting to SSAS Cube using Silverlight

    Some time back when I was watching a presentation of a third party reporting product, I saw some nice animated charts. I wanted to create something similar to those charts and when I checked on SSRS, unfortunately what I wanted isn't possible with SSRS. So I moved into Silverlight Charts and I...
  • Wiki Page: How to export file by jQuery in ASP.NET Web Forms and ASP.NET MVC

    Table of Contents How To Requirements Specification Export Excel using jQuery in ASP.NET Web Forms Export Excel using jQuery in ASP.NET MVC References Conclusion How To In this article, I will explain how to export file by jQuery in both ASP.NET Web Forms and ASP.NET MVC. As you know, jQuery is...
  • Wiki Page: [Dev Tutorial] WebBrowser - Web Scraping

    Have you ever wanted to make the application which will scrape some data from the web site? If so, this article is just perfect for you. Table of Contents WebBrowser class Methods in WebBrowser class Properties in WebBrowser class Web scraping .NET Framework is a very large and powerful...
  • Wiki Page: C#: Nullable Types and ?? Operator

    Table of Contents Nullable types vs Non-nullable types What about Setting a Default Value when a certain variable is null? Nullable types vs Nullable fields Nullable types vs Non-nullable types While developing C# projects it is common to perform null comparison operation in order to avoid...
  • Wiki Page: Difference between Array and Array List

    The basic difference between an Array and ArrayList are : Arrays are of fixed size, where as ArrayList can grow dynamically in size. Array occupies memory in Stack where as ArrayList occupies Heap. Also, ArrayList are not type-safe, single arraylist can contain different datatypes. Let us go...
  • Wiki Page: Create an Analog Clock in a Windows Store Application

    This sample uses xaml and C# to create an analog clock in a windows store application. Xaml allows you to vary the angle of lines when drawn on the screen. I used an ellipse as the background of the clock. We will draw 3 lines for the hour, seconds, and minute hand on an analog clock. A rotate transform...
  • Wiki Page: Een analoge klok maken in een Windows Store Applicatie (nl-NL)

    Dit voorbeeld gebruikt xaml en C# om een analoge klok te maken in een windows store applicatie. Xaml laat u toe de hoek van lijnen weergeven op een scherm te laten variëren. Ik heb een ellips gebruikt als achtergrond van de klok. We zullen drie lijnen tekenen voor de uur, seconden en minuut wijzer...
  • Wiki Page: Bing Maps for Silverlight - Customized Tooltip for Pushpins

    I recently had a requirement where I want to show a tooltip for pushpin and this is with Bing Maps for Silverlight. I have worked with Bing Map AJAX control, and it has this thing called Infobox which is found on Microsoft.Maps.Infobox namespace. But unfortunately in Bing Maps Silverlight control,...
  • Wiki Page: Pasar de un Datagridview a Excel en C# (es-ES)

    En este screencast, veremos como pasar un datagridview a excel en C#. el ejemplo esta hecho en Visual Studio 2010, pero el ejemplo puede acerse en Visual Studio 2005 , 2008 y 2012. Gracias :D
  • Wiki Page: Senha forte usando C#

    Olá pessoal, hoje eu vou falar e mostrar como fazer senhas fortes usando a linguagem C#. Antes de começar a mostrar e explicar o código, é importante entender porque precisamos de senhas fortes e a atualização periódica. Como arquiteto de software e professor de faculdade, os profissionais estão se...
  • Wiki Page: Conectar no banco de dados

    Table of Contents Introdução Qual a melhor maneira de fazer uma conexão com o banco de dados? Qual é a vantagem de usar MVC falado anteriormente? Driver usando C# Introdução http://msdn.microsoft.com/pt-br/library/ee730343.aspx Hoje em dia muitos desenvolvedores não sabem como funciona...
  • Wiki Page: SharePoint 2010: How to Copy a List Programmatically within the Same Site Collection Using C#

    Table of Contents Introduction C# Code Example See Also Introduction Recently someone expressed his requirements to copy sharepoint lists within the same site collection. Hence to automate this process at a single place I have developed this console application. This code can be further modified...
  • Wiki Page: BizTalk Server 2010: .NET Helper Classes

    Table of Contents Introduction Helper Class .NET Samples See Also Introduction .NET classes can be used inside an orchestration. They can be divided into two distinct categories according to Optimizing Orchestration Performance recommendations: Helpers and services - These classes provide...
  • Wiki Page: Estrutura de repetição - foreach

    A instrução foreach repete um grupo de comandos incorporados para cada elemento em uma matriz ou uma coleção de objetos que implementa a interface de System.Collections.IEnumerable ou System.Collections.Generic.IEnumerable <T> . A instrução foreach é usado para percorrer a coleção para obter...
  • Wiki Page: Atributo condicional em C# (pt-BR)

    Muitas vezes no desenvolvimento de aplicações é necessário condicionar o uso de determinadas rotinas a um cenário específico. Existem sistemas que mudam completamente o comportamento, de forma controlada, dado o contexto de seu uso. Há muitas formas para se fazer isso. Uma delas é um recurso bastante...
  • Wiki Page: Books for Developers

    This topic is a recommended reading. This article indicates a suggested or recommended reading that will provide you with accurate and important informations for a better understanding of the covered topic. Table of Contents Introduction .NET General ADO.NET ASP.NET Best Practices...
  • Wiki Page: How to Concatenate Strings into a Single Wrapping TextBlock (with Wrapping on Each Word)

    This "How To" shows several concepts around grouping and wrapping text. It also shows just how flexible the TextBlock now is, since the introduction of Runs. Each Run can have different styles, cursors, even events like MouseLeftButtonDown For this scenario, a WPF Forum poster...
  • Wiki Page: Articoli Italiani su TechNet Wiki - C# (it-IT)

    Table of Contents Introduzione Elenco articoli Vedere anche Introduzione Questa pagina contiene un elenco diviso in categorie degli articoli in lingua italiana presenti sul TechNet Wiki e relativi al linguaggio di programmazione C# , sia scritti originariamente in Italiano che tradotti...
  • Wiki Page: Utilizando IEnumerable

    Olá pessoal, hoje eu vou falar e mostrar um pouco sobre como pegar os valores de um IEnumerable em forma de propriedade. Além de mostrar as várias maneiras de utilizar o retorno desse tipo. O grande problema hoje é a forma de pegar os dados, a melhor maneira de pegar os dados é utilizando propriedades...
  • Wiki Page: Building an App using the DataviewModel from external XML

    The title pretty much explains everything we will find in this article and solution to this question We will be using data from xml file to build our own data model and then finally displaying that to end user. ( Actual Question Image Link ) Basically this question answers three things...
  • Wiki Page: Nesting, ListView inside ListView DataTemplate (Or TreeView representation)

    This article builds a data model to represent the nesting relationship which can be displayed in a tree like structure inside nested ListViews. This tries to solve this MSDN problem and create a structure as shown below Data Model class Menu { public ObservableCollection<...
  • Wiki Page: Display Images in GridView/ListView using DataBinding

    This article shows how easy it is to display images in ItemsControl element using simple DataBinding. Answer posted to these MSDN questions ( 1 , 2 ) Let's take a look at this sample code for the implementation details: < GridView x:Name = "gridView" ItemsSource...
Page 2 of 7 (162 items) 12345»
Can't find it? Write it!