AWSDevOpsTechnology

Configuring IIS for ASP.net Application – Windows 2012

This blog aims at basic steps for setting up ASP application(Website) on IIS. The screenshot and steps are mentioned using Windows 2012 server edition. However, the same steps are also valid for Windows 2008 Server. We will be installing .Net 3.5 and 4.5 during the further steps. Steps To Follow 1. Open Server Manager and […]

Rahul Jaiswal
Rahul Jaiswal
Read

Front End DevelopmentTechnology

Implement dynamic content on web page using Web method in form of Json object

Introduction Json is a lightweight interchange format, it is easily understood by human and machine also. Json is a platform independent data format, it is compatible for all platform, with the help of Ajax call, we will get Json object data through web method to create dynamic pages content without post back on server. Here […]

Harsh Verma
Harsh Verma
Read

Technology

Enable Transaction in WCF

Transaction in WCF is a set of operations or logical unit of work comprising of activities. Here, if a single operation fails, then all operation fails automatically. We will follow these steps for enable transaction in WCF : Step 1:- Add  Transactions namespace in  WCF Service project. Using System.Transaction;   Step 2:- Set TransactionFlow property of the OperationContract […]

Mohit Kumar
Mohit Kumar
Read

MarketingTechnology

How to Integrate ASP.NET custom user control with Umbraco CMS

INTRODUCTION You can integrate ASP.NET user controls with Umbraco CMS. You can communicate with your control by using Public Properties and macro elements. The user control created with data entry form in ASP.NET looks like the one below: After creating user control in ASP.NET project, copy the custom control bin file into bin folder and.axcs […]

Anshul Verma
Anshul Verma
Read

MarketingTechnology

Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#

This Blog explains how to find the Latitude / Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the […]

Anshul Verma
Anshul Verma
Read

Technology

Integrate Twitter API in Asp.net

Introduction In this Blog I will explain how to integrate Twitter API with C# Asp.net. Before Going to start twitter API integration we should do following steps: – You should have twitter account. 1) Authorize your account in twitter and open https://apps.twitter.com/,create new app button 2) Provide application name should be unique, description and website URL can be dummy: […]

Mohit Kumar
Mohit Kumar
Read

Technology

10 key basic things before starting development on a new ASP.NET web forms application

Nowadays, most of us are choosing for ASP.NET MVC for their new web applications. However, this may not be always possible and we might be required to use Web Forms for our new projects. In these kind of  cases few of us have this confusion – If I develop my project using Web Forms and […]

AWS

Deploy ASP.NET application on Amazon EC2

This article is a step by step guide to deploy an ASP.NET MVC application by using Web Deploy on IIS server, running on  Amazon EC2 Windows server. Step 1: Launch Instance Once you have logged in to AWS console, Go to EC2 -> Instances, then launch instances and select Microsoft Windows Server 2012 Base and follow the steps. Before Launching […]

Services