Check Javascript Disabled in Clients Browser and ASP.Net solution

These days none of the web application can work without Javascript. Q. Why should we check if javascript is disabled in the client browserA. First to provide better service to the client on UI (priority) and second to protect your application from intrusion (it can be a motive) Now it is really simple to do: … Continue reading Check Javascript Disabled in Clients Browser and ASP.Net solution

Create first program with Angular 7

Previously: For setup of Angular 7 Click Here Now as the setup of the Angular 7 is done in the system let us build out first program by following these steps. Create a folder for the application Open the folder in the CMD (Command Prompt) Now enter the command below to create program "demo-app" ng … Continue reading Create first program with Angular 7

Let us start with Angular 7

(Wiki) Intro: Angular is a JavaScript-based open-source front-end web application framework mainly maintained by Google and by a community of individuals and corporations to address many of the challenges encountered in developing single-page applications. Angular 7 is available for use recently just few days back (October 2018). So let us start with Angular 7: Prerequisite: Node.js version … Continue reading Let us start with Angular 7

Angular 5 App Deployment

Previously: Setup Angular 5 click here Startup with Angular 5 base code click here Angular 5 Components click here Angular 5 Interpolation, Property & Event Binding click here Angular 5 Route click here Angular 5 Services click here   Now in this part we will be discussing about Angular 5 Build and deployment: Let us create a build $ ng build … Continue reading Angular 5 App Deployment

Angular 5 Services

Previously: Setup Angular 5 click here Startup with Angular 5 base code click here Angular 5 Components click here Angular 5 Interpolation, Property & Event Binding click here Angular 5 Route click here   Now in this part we will be discussing about Angular 5 Services: Let us create a service say “data” $ ng g service data Let us … Continue reading Angular 5 Services

Angular 5 Components

Now we did the Angular 5 set up here We did our base Angular 5 program startup and test here Now in this part we will see about the Angular 5 Components. So Let us start: Introduction: Angular components are considered as the basic building blocks of angular app. Angular components can be found inside … Continue reading Angular 5 Components

Angular 5 start with base program

Now as to start with Angular 5 we did it in last blog to read about it Click Here In this blog we will start with writing our first program on Angular 5. So Let's Start: Create a project folder Open command prompt interface to the folder path Run the command to generate the angular structure … Continue reading Angular 5 start with base program

Let us start with Angular 5

(Wiki) Intro: Angular is a JavaScript-based open-source front-end web application framework mainly maintained by Google and by a community of individuals and corporations to address many of the challenges encountered in developing single-page applications. Angular 5 is release recently during last of 2017. This is a one of a great framework to work with. In this part … Continue reading Let us start with Angular 5

Solutions to Date-Time Issue between Server Clients at different Timezone

After Investing lot of time in solving the date-time difference problem between Server and Clients due to them being at different Timezone, I understood few things which I would share with you. You can't control the clients timezone. You can only control your server side timezone. You can't force a your client.to accept your specific date-time. … Continue reading Solutions to Date-Time Issue between Server Clients at different Timezone