Wednesday 5 November 2014

Monday 31 March 2014

Hello World in AngularJs

There are 2 files one is Html and second is Js.

Html Coding :

In Html Page , we have used 2 Js File , one is angular js which you can download it from angularjs site , and second one is you have to create or you can write in html page by using <script>  </script> tag.

data-ng-app ="myApp"
In js we have used  myApp is the name used for code of block where angularjs will be resposnive.
we have created one controller in Js named as MainCtrl , see javascript file at the bottom of this page .

{{}} this is delimeters , used for expression in angularjs .
{{text}} you can check the value of text  in Js file ...




Java Script File :
$scope.text automatically bind it  with {{text }} at html page ...






Wednesday 29 January 2014

How to create Strore Procedure for Data Entry Form ( Save proceudre )


Procedure to Save Data and  Edit Data in Form
Alter PROCEDURE SaveEmployee
    @Id bigint,
    @Name nvarchar(50),
    @FatherName nvarchar(50),
    @MotherName nvarchar(50),
    @DesignationId bigint,
    @CompanyId bigint,
    @DepartmentId bigint,
    @DOB Date
AS
BEGIN
 if(@Id=0)  
 begin
       
    INSERT INTO Employee
    (
   
    Name ,
    FatherName ,
    MotherName ,
    DOB,
    DesignationId,
    CompanyId ,
    DepartmentId
    )
    VALUES
    (
 
    @Name ,
    @FatherName ,
    @MotherName ,
    @DOB ,
    @DesignationId ,
    @CompanyId ,
    @DepartmentId
 
    )
END
else

  BEGIN
UPDATE Employee
SET
Name=@Name ,
FatherName  =@FatherName,
MotherName =@MotherName ,
DOB = @DOB ,
DesignationId =  @DesignationId ,
CompanyId=@CompanyId ,
DepartmentId  = @DepartmentId
WHERE EmployeeId =@Id
END

 IF (@Id = 0)
BEGIN
SELECT  max(EmployeeId) EmployeeId FROM Employee
END

ELSE
BEGIN
SELECT EmployeeId FROM Employee
WHERE EmployeeId=@Id
END
    end

Tuesday 21 January 2014

Friday 17 January 2014

Why Asp.Net not Asp ( Classical Asp ) ?

ASP


·                     ASP has only  4 built in classes like Request, Response, Session and Application 

·                     ASP does not have server based components like button , textbox . we have to used  Html control.

Wednesday 15 January 2014