| by Achyut Kendre | No comments

Generic Repository

In last post we use simple repository pattern.In simple repository when we add more and more repositories we end up with writing same code again and specially core for CURD operations. If you add more domain entities you need to write same code again and again to perform the CURD operations for various repositories. Only […]

Read More
| by Achyut Kendre | No comments

Repository Design Pattern – simple implementation

What is Repository Pattern? Repositories are classes or components that encapsulate the logic required to access data sources. They centralize common data access functionality, providing better maintainability and decoupling the infrastructure or technology used to access databases from the domain model layer. This lets you focus on the data persistence logic rather than on data […]

Read More
| by Achyut Kendre | No comments

Java Script Built in Functions

Java Script provides you built in methods for – String Manipulation Date Time Manipulation Math Functions String Manipulation Functions in JavaScript JavaScript provides you following built in functions – length :- is a property it gives you no of characters from stringtoUpperCase():- convert the string to upper case.toLowerCase():- convert the string to lower case.concat() :- […]

Read More
| by Achyut Kendre | No comments

Document Object Model (DOM)

DOM is tree of object get created in browser memory, it contains object, properties for every tag from html document loaded in browser , using these objects or properties we can access the DOM. When a web page is loaded, the browser creates a Document Object Model of the page.The HTML DOM model is constructed […]

Read More
| by Achyut Kendre | No comments

Java Script Intermediate

What is Array? An array is a special type of variable, which allow to store and manipulate more than one value at a time. If you have a list of items (a list of numbers , for example), storing the number in single variables could look like this:var n1= 233; var n2 = 455; var […]

Read More
| by Achyut Kendre | No comments

Introduction to Java Script

What is client side scripting/ programming? client side scripting or programming enables you to write a small code blocks those allow to add interactivity or dynamicness to static html documents. e.g. user inputs, animations, effects, validation etc. Few common client side scripting languages are – vbscript, javascript etc What is Java Script? Java Script is […]

Read More
| by Achyut Kendre | No comments

CSS Advance Concepts

Read More
| by Achyut Kendre | No comments

What is CSS?

HTML was NEVER developed to contain tags for formatting a web page. HTML tags was created to describe the content of a web page, like: When tags like , and color attributes were added to the HTML , it started a nightmare for web developers. Development of large websites, where fonts and color information were […]

Read More
| by Achyut Kendre | No comments

Forms in HTML?

In this session we will try to understand how to create html forms and how to use it. What is Form? Form is tool by which we collect information form the user. You might filled lot of forms like admission form, enquiry form etc. What is HTML Form? An HTML form is used to collect […]

Read More
| by Achyut Kendre | No comments

How to Create Tables-HTML?

HTML tables allow web developers to arrange data into rows and columns. Tables are basically used to create tabular representation of data or to create a tabular layout. Define an HTML Table Html provides you <table> tag to create the table or define the table. It is binary tag so table starts with <table> and […]

Read More