
Search In
Hello Readers!
In this blog post, let us learn how to create simple shapes that can be made even simpler using CSS. I am providing the code for 5 shapes we might be using then and now. Note that, all of the figures below use only a single HTML eleme
Hello readers , this is a small blog on creating animated buttons using css3. In my example, I have created four buttons using "<ul> <li>" of different color but of same size. These buttons have width and height 100%, bord
Eclipse provides lots of keyboard shortcuts which can save your lot of time.
Here is a list of shortcuts that you might want to try out: -
**Navigation Shortcuts**
*Shortcut Description*
Ctrl + Shift + R Open / Search for resources, e.g. f
Method Referencing
Method reference is feature related to lambda expressions. Method references are more readable form of Lambda expressions for already written methods. “::” operator is used to define method reference. It provides a way to a meth
In the below code I have created a drop down list consisting of three different sizes. On clicking a particular size it will display that size div along with its name.
Here is the HTMl:
<html>
<head>
<title>Controller&
ASP.NET has a pool of threads to service incoming requests. Once a new request is received a new thread is picked from the thread pool to service this request and this thread cannot serve any other request until the current request gets completed.
Stack is used to store particular type of data. Stack is a memory area where we can store all local variables and parameters used in our functions.
In Stack we can perform three operations that are :
Push - to add something in stack with complexity
Alias is basically renaming a table temporarily for a sql statement.
The rename is done only for a particular statement is temporory.
ex
The syntax of table alias is as follows
SELECT column1, column2....
FROM table_name AS alias_name
WHERE [con
Cursor In SQL
Cursor is used to iterate within a table. It is a pointer which iterates within a table to fetch rows.
Life cycle of cursor
1)DECLARE
Firstly you
Partial View in MVC is used when we want to use section for the master or the main page again and again.
It is just like a user control that is used to display or get data in the view that we want.
So as a beginner, you first need t
