Browse by Tags

Tagged Content List
  • Wiki Page: Leer valores enviados por los metodos Get y Post (es-ES)

    Leer valores enviados por los metodos Get y Post, guardarlos en un archivo de texto, configurado en el web.config Este es el código fuente: using System ; using System . Collections . Generic ; using System . Linq ; using System . Web ; using ...
  • Wiki Page: Using the KeywordQuery class to search SharePoint content

    You can use the KeywordQuery class to search SharePoint content using a search query string formatted in the same way you would if you used the Search Center user interface. This makes it really easy to structure (and test) search queries for use in your applications. In this example, I have a...
  • Wiki Page: FlipView Dynamic Binding And Styling

    I helped someone to solve a problem at MSDN forums. The resolution of the issue was easy to solve that mystery. Direct links to the source http://gallery.technet.microsoft.com/FlipView-Dynamic-Binding-70d1aef7 http://code.msdn.microsoft.com/FlipView-Dynamic-Binding-8752e185...
  • Wiki Page: Processing Power Point templates using OpenXml

    Processing Power-Point templates in automated processes is very common requirement. In such a scenarios we usually need to replace template placeholders with the dynamic content retrieved from the database or other data sources. In this article I will show you how to replace Power Point template with...
  • Wiki Page: Adding links and styled text paragraphs to Power-Point presentation in C#

    When processing Power-Point presentations, the very common scenario is to replace or insert new paragraphs into presentation. Inserting styled paragraphs can be quite confusing as we need to structure run tags properly in order to avoid breaking the document structure. In typical scenario we want...
  • Wiki Page: SharePoint 2010: Adding Charts to Standard Webparts and Visual Webparts

    Adding charts to webparts is actually pretty easy; here's how. Adding a chart to a standard webpart : 1. Create a new Empty SharePoint project in Visual Studio 2. Add a reference to Microsoft.Web.UI.DataVisualization (it's here by default: C:\Program Files (x86)\Microsoft Chart Controls...
  • Wiki Page: Creating a Simple Plugin Mechanism

    Table of Contents Introduction Creating a simple plugin mechanism from scratch Creating the plugin interface Implementing the plugin interface Implementing the plugin framework Integrate the plugin mechanism in the main application Creating a simple plugin mechanism with MEF Implementing the plugin interface...
  • Wiki Page: C# 5.0 Caller Information (tr-TR)

    Merhaba arkadaşlar, C# 5.0 versiyonuyla hayatımıza giren Caller Information (çağıran özellikleri) ile oluşturduğunuz metodun nereden (hangi metod tarafından) çağırıldığı bilgisine ulaşabilirsiniz. Caller Information Kullanım Alanları Örneğin bir metod oluşturdunuz. Oluşturduğunuz...
  • Wiki Page: Creating a Pluggable Application Without Any External Dependencies on 3rd-party Libraries

    A complete example of making a pluggable application without any external dependencies on 3rd-party libraries. To achieve that, we will need three different projects, I'm starting out from the engine to the application that will eventually host it. 1. PluggableApplication.Interface ...
  • Wiki Page: Como ejecutar un metodo (code behind) en JavaScript (es-ES)

    Basado en este articulo Para poder ejecutar un metodo en el codigo c# desde javascript nos vamos a auxiliar de la funcion js que nos provee ASP.NET: __doPostBack(). Esta funcion toma dos argumentos: 1) EventTarget 2) eventArgument 1) EventTarget: contiene el...
  • Wiki Page: Como guardar un SqlDataSource en un DataSet en C# (es-ES)

    Hoy he escrito un metodo en C# que permite usar un SqlDataSource para ser convertido en un DataSet. A veces se da el caso que tenemos una fuente de datos en nuestra aplicacion, como un SqlDataSource y queremos de cierta forma manipular los datos que nos trae el data source pero no queremos...
  • Wiki Page: Metodo para crear filas dinamicamente (en tiempo de ejecucion) en un gridview (es-ES)

    private void CreateRowAt ( GridView gridView , int rowNumber , System . Drawing . Color rowColor ) { Table table = gridView . Rows [ rowNumber ]. Parent as Table ; //creamos una tabla a partir del GridView if ( table == null ) return ; GridViewRow row = new GridViewRow (- 1 , - 1 , DataControlRowType...
  • Wiki Page: What does async & await generate?

    Do you ever get the feeling that you want to know exactly what happens behind the scenes? I do, quite a lot actually. Which is one of the many reasons that I’ve written about IL, Reflection and ways to prove how certain code behaves and works using tools such as Reflector. If you’ve read my book C#...
Page 2 of 2 (38 items) 12
Can't find it? Write it!