/* ------------------------ My Meta Content Here SEO ------------------------ */

Pages

Main Menu

Tuesday, September 27, 2011

Convert Web Page to PDF - #1 Web to PDF Converter

Convert Web Page to PDF - #1 Web to PDF Conver...
Read More »

Friday, September 23, 2011

Using data list in asp.net

How to use datalist in asp.net ? Dynamically adding row in datalist using asp.net. Here i am just showing you the code for that. Here we go for some brief description about it. We have a datalist and a input control as inside the . Now we want add some more row at runtime with a footer option add more on it. So what to do now and how to do ? Here is the code for that. *********************** H...
Read More »

Thursday, September 22, 2011

AutoPostBack Property in asp.net

AutoPostBack Property What ? Autopostback is the mechanism, by which the page will be posted ,back to the server automatically based on some events in the web controls. In some of the web controls, the property called auto post back, which if set to true, will send the request to the server when an event happens in the control. If this property is set to TRUE the automatic post back is enabled, otherwise...
Read More »

Saturday, September 17, 2011

Triggers in sql server 2005

Some useful query related to Trigger in SQL SERVER 2005 ***** how to create triggers in sql server 2005 ? ***** Create trigger your_trigger_name ON your_table_name FOR Your_Operation -- For example : For Update or For Insert, For Delete, After Update, After Insert etc AS BEGIN -- Your Input Output Parameter Declaration SELECT @PARA1 = (COLUMN_NAME) FROM INSERTED SELECT @PARA2 = (COLUMN_NAME) FROM DELETED -- Your DATA Manipulation Operation Here INSERT, UPDATE , DELETE END GO Example...
Read More »

My Blog List