Wednesday, 30 March 2016
To add a column in a table, use Alter Query the following syntax:
ALTER TABLE table_name
ADD column_name datatype.
To delete a column in a table, use the following syntax (notice that some
database systems don't allow deleting a column)
ALTER TABLE table_name
DROP COLUMN column_name.
To change the data type of a column in a table, use the following...
Tuesday, 15 March 2016
The INSERT INTO statement is used to insert new records in a table.
Syntax:-
INSERT INTO table_name (column1,column2,column3,...)
VALUES (value1,value2,value3,...);
The DELETE statement is used to DELETE records in a table.
Syntax:-
DELETE FROM table_name
WHERE some_column=some_value;
The UPDATE ...
Sunday, 13 March 2016
Tuesday, 1 March 2016
How To Timer Work in Asp.net
Using a Timer Control Inside an UpdatePanel Control
When the Timer control is included inside an UpdatePanel control, the Timer control automatically works as a trigger for the UpdatePanel control. You can override this behavior by setting the ChildrenAsTriggers property of the UpdatePanel control to false.
For Timer controls inside an UpdatePanel
...