Canarys | IT Services

Blogs Category

Tag: ASP.NET

  • Introduction to Amazon S3 (Simple Storage Service) and EC2 (Elastic Cloud Computing) in Asp.Net

  • How to use Model Binding with ASP.NET Data Controls

    Introduction ASP.NET 4.5 provides a flexible alternative to server data controls called as, Model Binding. Using the new data model binding, you can directly use methods instead of data source to perform CRUD operations. In this article I will explain in detail how we can implement Model Data Binding with ASP.NET data controls. Here I…

  • Using XMPP and Openfire server in ASP.NET C# – Part -2

    Roster in XMPP Roster are the contacts of  user (contact list).   Roster Handlers in AgsXmpp Let us discuss, the handlers other than the mentioned in part -1 i.e., (loggedin, loginfailed) are mentioned below ·         OnRosterItem ·         OnRosterEnd ·         OnRosterStart   Let us recap part -1 (http://www.ecanarys.com/blog-entry/using-xmpp-and-openfire-server-aspnet-c-part-1 ) login part (we need here that code…

  • SQL injection attack and prevention using stored procedure

    What is SQL Injection Attack? SQL Injection is one of the many web attack mechanisms (hacking technique) used by hackers to steal data from organizations. It is perhaps one of the most common application layer attack techniques. Improper coding of your web applications that allows hacker to inject SQL commands into say a login form…

  • How to implement multiple service contract in a single WCF service.

    First lets us create one service by using “class library project”. STEP1: Create class library project Step2: Delete class1.cs file which is auto generated. Step3: Add wcf service for this project. Right click on right click on class library project->Add->new Item(click)->select wcf service from installed templates and rename is as ” Multipleservicecontrats.cs” Click add button…

  • Populate data as Facebook feeds in ASP.NET

    Want to load the data dynamically as Facebook feeds? Need to populate the data when scrollbar comes down to page/panel? In Facebook, we use to see the post feeds would load dynamically when you scroll to bottom of the page. I did attempt the same to achieve it in ASP.NET and finally end up with…

  • How to setup Module to Module communication in DotnetNuke

    Are you building modules in DotnetNuke? Is one module depends on another module? Want to exchange data between modules? Here we can discuss how to set up Inter Module Communication in DotnetNuke. In DNN, with the help of IModuleCommunicator and IModuleListener interfaces we can setup the communication between the modules. Here I would like to…

  • How to download YouTube Videos using .NET

    Are you interested in downloading YouTube Videos? Want to download YouTube Videos in device specific formats? Need to have some fun while coding on interesting Stuff? Yes, then you are at the right place! In this blog I am going to show you how we can download the Videos from YouTube URL in different formats.…