Posts

Showing posts from June, 2012
 How to avoid unexpected postback after pressing Enter in textbox http://rudebox. editboard.com/t 173-avoid-unexp ected-postback- after-pressing- enter-in-textbo x
To resolve " Validation of viewstate MAC failed ". Here , website url for generating machine key:  http://aspnetresources.com/ tools/machineKey   here example given below after generating machine key through above web url  This is the code which needs to be put in web.config file, hope it will help you out. <system.web> <machineKey validationKey=" 7B1A0112BEDDADE43C71702052E666 F5D5DDD8CB053F085E5362DFB1B20E 29266B8D47AE0F6C3A9E370C0192ED 1C488961F7D944A21ABF9AC2186E84 58A2FB17" decryptionKey=" EBCE0AD022C8A711670C4C96BB87C4 B91A3B0DF509B579222E1410003BE4 532B" validation="SHA1" decryption="AES" />   < /system.web>
To make text glow using css .txtGlow  {      font-family:Arial, Helvetica, sans-serif;     font-size:14px;     text-shadow: 0 0 10px #cccccc;      color:#fff;  }
To send automatic email window  services http://www.intstrings.com/ramivemula/articles/sending-automated-emails-asynchronously-using-a-c-windows-service-in-conjunction-with-database-email-records-part-ii/
How to call jquery from codebehind in asp.net http://vipullimbachiya.com/jQuery/AjaxJSON.aspx
To avoid jquery conflict Kindly use the following coding... <script type="text/javascript">         jQuery.noConflict(); ...... </script> Note: plz replace $ to jQuery
Best Website for Learning css, javascript, jquery,php http://css-tricks.com/snippets/
To know the max  size in SQL Server 2012 The maximum database size in SQL Server 2012 is: By FOR SQLSERVER Answer:   524,272 terabytes
To get awesome Backgound http://www.backgroundlabs.com/
To Pick up only left content of the word   DECLARE @ desc varchar ( 100 ) SET @ desc = 'EXCHANGEUNIT P1i / SILVERBLACK/ CYRILLIC' SET @ subdesc = RTRIM ( LEFT (@ desc , CHARINDEX ( '/' , @ desc ) - 1 )) SELECT REVERSE ( LEFT ( REVERSE (@ subdesc ), CHARINDEX ( ' ' , REVERSE (@ subdesc )) -1 ) )
How to design an organization chart?  http://sivanandareddyg.blogspot.in/2012/03/how-to-design-organization-chart.html
make round corner that support in IE Also http://cssround.com/ Give Button css http://css-tricks.com/ examples/ButtonMaker/
How to find all the Stored Procedures having a given text in it? SELECT ROUTINE_NAME, ROUTINE_DEFINITION FROM INFORMATION_SCHEMA.ROUTINES WHERE  ROUTINE_TYPE='PROCEDURE'
Sql intertview http://blog.sqlauthority.com/sql-server-interview-questions-and-answers/
To know database changes --- SELECT * FROM     sys.dm_db_index_usage_stats AS usage_stats INNER JOIN sys.tables AS tables ON tables.object_id = usage_stats.object_id WHERE     database_id = DB_ID() AND     tables.name in (select name from sys.tables)
Protecting Connection Strings and Other Configuration Information (C#)