Cloud Computing is a magic term which is mostly heard in the recent past among the technical world Devs. For those who never knew what is a cloud (in technical terms), let me put a simple description – Cloud saying to a Dev “You build the app, and I will take care of production environment”, its as simple as that. Even Microsoft don’t want to let their proportion of coders go down, it immediately came up with Windows Azure, Microsoft Cloud Platform. Windows Azure consists of mainly three important parts – Windows Azure (a place to manage the hosted services), SQL Azure ( to manage the data storage to DB) and AppFabric (used to build, scale and manage Web). Essentially a dev need to get accustom with all these three parts sooner or later.
Most Popular (Last 7 days)
- How to send an Email using C# - complete features
- Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email records PART - II
- JQuery POST & GET Request to WCF Service in ASP.Net MVC
- Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email records – Part I
- Create a Simple WCF service against Pubs Database using EF, LINQ – Part I
- Create a Simple WCF Service Client against Pubs Database using EF, LINQ – Part II
- Simple Html Editor based Comments Section with Captcha feature along with Database Interactivity
- Access Code-behind variables in ASPX and JavaScript
- ASP.Net MVC–Simple Application Security using Password Hashing before storing it to Database
- Access JavaScript Variables in Code-Behind Class
Most Popular (All time)
- How to send an Email using C# - complete features (21595 views )
- Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email records PART - II (14165 views )
- Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email records – Part I (8825 views )
- JQuery POST & GET Request to WCF Service in ASP.Net MVC (8757 views )
- Create a Simple WCF service against Pubs Database using EF, LINQ – Part I (8563 views )
- Access Code-behind variables in ASPX and JavaScript (8546 views )
- Create a Simple WCF Service Client against Pubs Database using EF, LINQ – Part II (6852 views )
- Access JavaScript Variables in Code-Behind Class (6679 views )
- Simple Html Editor based Comments Section with Captcha feature along with Database Interactivity (6332 views )
- Data Transfer between two ASP.NET Pages (5788 views )
- Save the World (5121 views )
- Retrieve files from a table in Database using Generic Handler (3936 views )
- ASP.Net MVC–Simple Application Security using Password Hashing before storing it to Database (3790 views )
- Save files to a table in Database using FileUpload control (3490 views )
- AJAX HTML Editor based Contact Form inside UpdatePanel along with UpdateProgress (3416 views )
- How to download files from server to client using a Generic Handler (3051 views )
- JQuery Quickies #1 – GalleryView Plugin by Jack Anderson (2982 views )
- Book Review - MCTS Exam 70-536 Microsoft .NET Framework – Application Development Foundation Self Paced Training Kit - Tony Northrup (2939 views )
- File Download by Anil (2879 views )
- Enumerating, Managing and Monitoring File system using C# (2816 views )
JumpStart Tutorials
- JumpStart # 11 - Xml Comments for code using GhostDoc Extension
- JumpStart # 10 – Display Validation Error Messages in different formats using JavaScript
- JumpStart # 9 – Make Response.Redirect() open in New Blank Window
- JumpStart # 8 – Making Client CallBacks by Implementing ICallBackEventHandler Interface
- JumpStart # 7 – Handling UserControl’s Event from Parent Page
- JumpStart # 6 – Accessing CheckBoxList Control in JavaScript and making a Mandatory Selection Enabled
- JumpStart # 5 – Access Properties of a UserControl from other UserControl in ASP.Net Page
- JumpStart # 4 – validateRequest in ASP.Net
- JumpStart # 3 – ViewStateMode in ASP.Net 4.0
- JumpStart # 2 – OUT Parameter in C#
- JumpStart # 1 - Using Optional And Named Parameters in C#
Latest Entries
Windows Azure #1 – Create and Deploy First Azure Web Application
RamiVemula on January 10, 2011 at 10:13 am
Filed under:ARTICLE, ASP.Net, Windows Azure
Simple Html Editor based Comments Section with Captcha feature along with Database Interactivity
RamiVemula on August 29, 2010 at 7:32 pm
In this tutorial, we see how to develop a simple comments section. This comments section is going to be a similar one to what we usually see in our day to day experience. Here we use TinyMCE editor to enable Html Comments. And also catpcha is enabled (with the help of reCaptcha of Google). The basic outline would be – Users provide their general details like name and email, and also they can provide Html Comment (using TinyMCE), and finally they should enter the text showed in the captcha for validating robots. Then we take the Html string, encode it using HtmlEncode(), store it in database. Finally we retrieve the encoded string from the database, we then decode it and display it in the page as Comment.
Create a Simple WCF Service Client against Pubs Database using EF, LINQ – Part II
RamiVemula on August 10, 2010 at 9:25 pm
1) In this tutorial (which is PART – II), we create a small website in ASP.Net 4.0 and we shall use a WebForm (named: PubsServiceTestPage.aspx) as a client to our service (which we created in former tutorial).
2) We Use the inline model of Webform (not the codebehind model).
3) We perform the actions using our client like, Getting all the Authors and display them in the Dropdownlist for selections, Selecting a Author and display his corresponding books using a Repeater, Modify and save the book details back to database etc.
4) To test the Client, we need the service to be running in the server, that can be simply manipulated by starting another instance of VS 2010 and running (Ctrl + F5) the PubsService.svc.cs.
Filed under:ARTICLE, C#, Entity Framework, LINQ
Create a Simple WCF service against Pubs Database using EF, LINQ – Part I
RamiVemula on August 10, 2010 at 7:56 pm
1) In this tutorial we create a simple WCF service which is used to retrieve and save data from Pubs Database (Microsoft sample database).
2) The service also demos on how to use EF 4.0 and LINQ against database coding, with no requirement of writing SQL queries.
3) The continuation of this tutorial shows on how to create a client (say a WebForm in a website) to utilize this service.
Filed under:ARTICLE, C#, Entity Framework, LINQ
JumpStart # 3 – ViewStateMode in ASP.Net 4.0
RamiVemula on May 14, 2010 at 12:45 am
Before looking at the code, Read about – What is JumpStart? <%@ Page Language="C#" EnableViewState="true"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> /* ViewStateMode – * 1) It is a new feature in ASP.Net 4.0. Using this we have explicit control on the controls * which participate in viewstate, thereby preventing [...]






