codewrapper

Stories submitted by codewrapper

Code Snippet - Example of Dynamic ExpandoObject in C# 4.0. - CodeWrapp(www.codewrapper.com)

submitted by codewrappercodewrapper(35) 2 years, 1 month ago

The ExpandoObject enables to create new members for an object in runtime. The ExpandoObject was introduced in C# version 4.0. In order to use ExpandoObject , you will have to add reference to System.Dynamic. read more...

add a comment |category: |Views: 110

tags: another

Code Snippet - Writing your first JQuery plugin with options. - CodeWr(www.codewrapper.com)

submitted by codewrappercodewrapper(35) 2 years, 1 month ago

This tutorial will show you how to create very simple jQuery plugin including passing options to the plugin. This plugin will give you the same functionality of $(selector).css() (it is just for the sake of the example). read more...

add a comment |category: |Views: 11

tags: another

Code Snippet - Load file into FTP server using FtpWebRequest in C#. (www.codewrapper.com)

submitted by codewrappercodewrapper(35) 2 years, 1 month ago

This code snippet will show you how to use System.Net.FtpWebRequest to upload file into a FTP server. It is also possible to get list of directory from FTP and download files using FtpWebRequest. read more...

add a comment |category: |Views: 46

tags: another

Code Snippet - SQL Paging Stored Procedure - CodeWrapper.com(www.codewrapper.com)

submitted by codewrappercodewrapper(35) 2 years, 2 months ago

This sp is useful where paging is required on huge tables. It selects the exact data instead of getting whole table data. It works on one table, so that if you have to select from multiple tables, then you can create a view and pass it's name to this sp as @table parameter. read more...

add a comment |category: |Views: 3

tags: another

Convert XML into instance of a class by using XmlSerializer in run-tim(www.codewrapper.com)

submitted by codewrappercodewrapper(35) 2 years, 3 months ago

Convert XML into instance of a class by using XmlSerializer in run-time... read more...

add a comment |category: |Views: 15

tags: another

Code Snippet - Simple example of Visual Studio Code Snippet. - CodeWra(www.codewrapper.com)

submitted by codewrappercodewrapper(35) 2 years, 3 months ago

Visual Studio code snippets are used for ready made peaces of code that you type frequently... read more...

add a comment |category: |Views: 7

tags: another

Code Snippet - Build dynamic Google XML Site Map by using C#. - CodeWr(www.codewrapper.com)

submitted by codewrappercodewrapper(35) 2 years, 3 months ago

This code is used to generate basic Google XML site map according to the SiteMap protocol. read more...

add a comment |category: |Views: 38

tags: another