Posts

Showing posts from September, 2016

How to calculate Round calculations Using C#

Here can u take monthly calculation to Round ur values u will get the Values in Result double  sample= ((( double )(Field1).(Field2)) / 12.0);                                  string [] str = sample.ToString().Split( '.' );                                  int  i = str.Count();                                  double  values = 0;               ...

Angular Js Post method using MVC

Image
Angular Js Post call Implementation: < !DOCTYPE html > < html > < head > < title ></ title > < meta charset ="utf-8" /> < link href ="Content/bootstrap.min.css" rel ="stylesheet" /> < script src ="Scripts/angular.min.js"></ script > < script src ="Scripts/bootstrap.min.js"></ script > </ head > < body ng-app =" myapp "> < form id ="form1" ng-controller =" mycontroller " ng-submit =" submit () "> <!--<div ng-controller="mycontroller">--> < div style =" padding : 50px ; "> < h1 style =" text-align : center ; border : burlywood ; background : azure ; "> Employee </ h1 > < div class ="row"> < div class ="col-m...