.rounded-corners
{
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
border-radius: 20px;
background:#CC0000;
width :40%;
}
OR
write In table Tag
style="border-radius:15px"
.searchBox{
background-image
:
url
(
'images/magnifying-glass.gif'
);
background-repeat
:
no-repeat
;
padding-left
:
20px
;
}
Member login |
Feature | Repeater | DataList | GridView |
Table layout | No | No | Yes |
Flow layout | Yes | Yes | No |
Column layout | No | Yes | No |
Style properties | No | Yes | Yes |
Templates | Yes | Yes | Columns/optional |
Select/ Edit/Delete | No | Yes | Yes |
Sort | No | No | Yes |
Paging | No | No | Yes |
2. Text1.text ------- is Method
3. button 1. Click -- is an event
What is the difference between a property a method and an event? Give an example of each.
*Property are a type of method that shows state of an Object
like Caption, backcolour etc.
*Methods/Functions are for changing Or doing something on
the Object Like Move,Remove, Add etc.
*Event are Objects which means that something happend for
which the object must respond to. And for this very reason
we write method like
button1_Click( sender Object, event Object)
The event Object(Delegate) is related with the method of
that responder Object(Button)