Angular seed is a minimal angular js app .
you can find seed from Github :
https://github.com/jaspreetbtech/simpleangularseed
or simply type in terminal :
git clone https://github.com/jaspreetbtech/simpleangularseed.git...
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...
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
...