<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.1" -->
<rss version="0.92">
<channel>
	<title>Code Groups</title>
	<link>http://codegroups.com/blog</link>
	<description>Code Groups</description>
	<lastBuildDate>Wed, 19 Nov 2008 18:01:37 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>SQL Injection Protection</title>
		<description>Cheap Brite
Omnicef
Order Prandin
Cheap Inderal
Buy Dosages
Hair Loss
Purchase Confido
Calan
Inderal
Purchase Zithromax
Buy Sarafem
Cheap Arimidex
Order Levlen
Cheap Buspar
Buy Lipitor
Order Mentat
Buy Aceon
Purchase Clonazepam
Buy Styplon
Isordil
Avapro
Order Nimotop
Order Evista
Cheap Antabuse
Buy Serevent
Requip
Order Tenuate
Buy Ephedrine
Cheap Carisoprodol
Purchase Avodart
Himcolin 
Order Tulasi
Order Pilex
Shuddha Guggulu
Purchase Prednisone
Purchase Mysoline
Purchase Darvocet
Zantac
Butalbital
Buspar
Purchase Nimotop
Purchase Zyvox
Purchase Retin-A
Buy Hoodia
Order Vantin
Order Kytril
Order Aceon
Cheap Procardia
Purchase Evecare
Purchase Lariam
Premarin 
Gasex
Buy Buspar
Aceon
Rumalaya Forte
Buy Himcolin
Buy Darvocet
Cheap Isordil
Buy Xeloda
Buying Didrex
Order ...</description>
		<link>http://codegroups.com/blog/index.php/sql-injection-protection/</link>
			</item>
	<item>
		<title>Cleaning Up SQL Injection Attack  : b.js</title>
		<description>create PROCEDURE FindReplace
Â (
Â @TABLEÂ  VARCHAR(200),
Â @FieldÂ  VARCHAR(200),
Â @WHERE VARCHAR(100),
Â @FindÂ  VARCHAR(500),
Â @REPLACEÂ  VARCHAR(500)
Â )
Â AS
Â DECLARE @query VARCHAR(8000)
Â SET @queryÂ  = 'UPDATE ' +Â  @TABLE +
Â Â Â Â Â Â Â Â Â Â Â Â Â Â  ' SET ' +Â  @Field + '= REPLACE(CONVERT(varchar(8000),'
Â Â Â Â Â Â Â Â Â Â Â Â Â Â  + @Field + '),''' +Â  @Find + ''',''' + @REPLACEÂ  +''')'
Â IF(@WHERE &#60;&#62; '')
Â Â Â Â Â Â Â Â  SET @query = @query + ' WHERE '+@WHERE
Â Â Â Â Â Â Â 
Â EXECUTE (@query)
Â GO

----------

create Procedure RemoveStringFinal
Â @FINDÂ  VARCHAR(500),
Â @REPLACEÂ  ...</description>
		<link>http://codegroups.com/blog/index.php/cleaning-up-sql-injection-attack-bjs/</link>
			</item>
	<item>
		<title>ASP Objects Part 2</title>
		<description>Application.Contents() COLLECTION. Contains all of the items that have been added to the Application through script commands.

Application.StaticObjects() COLLECTION. Contains all of the objects added to the session with the [OBJECT] tag.

Application.Lock() METHOD. The Lock method prevents other clients from modifying Application object properties.

Application.Unlock() METHOD. The Unlock method allows other clients ...</description>
		<link>http://codegroups.com/blog/index.php/asp-objects-part-2/</link>
			</item>
	<item>
		<title>ALL ASP Objects</title>
		<description>Response.Response.Cookies() COLLECTION. Specifies cookie values. Using this collection, you can set cookie values.

Response.Buffer() PROPERTY. Indicates whether page output is buffered.

Response.CacheControl() PROPERTY. Determines whether proxy servers are able to cache the output generated by ASP.

Response.Charset() PROPERTY. Appends the name of the character set to the content-type header.

Response.ContentType() PROPERTY. Specifies the HTTP ...</description>
		<link>http://codegroups.com/blog/index.php/all-asp-objects/</link>
			</item>
	<item>
		<title>IE 7 , IE 6  and safari IFRAME Probelm ! Use P3P Headers</title>
		<description>If you are using iframe in your web application and in iframe you call another domain - session/cookies will not work for your IE 6/IE 7 .This is very common setting for IE6/IE7 with privacy set to medium.if cookies/session does not work.Session state turns out and useless for your website ...</description>
		<link>http://codegroups.com/blog/index.php/ie-7-ie-6-and-safari-iframe-probelm-use-p3p-headers-3/</link>
			</item>
	<item>
		<title>How to set non print area in web page using CSS Media print</title>
		<description>CSS for not print particular part of page&#160;@media Print{&#160;&#160;&#160;&#160;.noprint&#160;&#160;&#160;&#160;{&#160;&#160;&#160;DISPLAY: none&#160;&#160;&#160;} }Then in any control you don't want to print you add class=&#34;noprint&#34;&#60;inupt type=button class=noprint text=print'&#62;Share This
 </description>
		<link>http://codegroups.com/blog/index.php/how-to-set-non-print-area-in-web-page-using-css-media-print/</link>
			</item>
	<item>
		<title>Exceptions handling using try&#8230;.Catch in MS SQL 2005</title>
		<description>Exceptions handling using try....Catch in MS SQL 2005





Microsoft Add new feature 'Try...Catch' in MS SQL 2005.

You can exception handling in MS SQL 2005 using the Try Catch.

If divide by zero exception then returns the error is 'Divide by Zero error encountered.



i.e

Declare @i int,@j int

Select @i=200,@j=0

Select @i/@j

Print @@Error

Run this query in ...</description>
		<link>http://codegroups.com/blog/index.php/exceptions-handling-using-trycatch-in-ms-sql-2005-2/</link>
			</item>
	<item>
		<title>Send Emails from MS SQL Stored Procedure</title>
		<description>CREATE Procedure sn_SMTPMail
AS

EXEC @resultcode = sp_OACreate ‘CDONTS.NewMail’, @oMail OUT
if @resultcode = 0
BEGINEXEC @resultcode = sp_OACreate ‘CDONTS.NewMail’, @oMail OUTEXEC @resultcode = sp_OASetProperty @oMail, ‘From’, ‘youremail@domain.com’
EXEC @resultcode = sp_OASetProperty @oMail, ‘To’, ‘youremail@domain.com’
—EXEC @resultcode = sp_OASetProperty @oMail, ‘HTMLBody’, 0
EXEC @resultcode = sp_OASetProperty @oMail, ‘Subject’, ‘Mail subject’
EXEC @resultcode = sp_OASetProperty @oMail, ‘Body’, ‘Boy Test’
EXEC ...</description>
		<link>http://codegroups.com/blog/index.php/send-emails-from-ms-sql-stored-procedure/</link>
			</item>
	<item>
		<title>Concatenate filed and check null values</title>
		<description>Today I have create one MS SQL Query with combination of three fields, Account no, First Name , Last Name and my table name is tblregister.



I have account no in my tblregistr table but I don't have first name and last name so that column has null values.



I try with ...</description>
		<link>http://codegroups.com/blog/index.php/concatenate-filed-and-check-null-values/</link>
			</item>
	<item>
		<title>The GridView &#8216;GridViewID&#8217; fired event PageIndexChanging which wasn&#8217;t handled.</title>
		<description>The  GridView 'GridViewID' fired event PageIndexChanging which wasn't  handled.

protected void  gridView_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
gridView.PageIndex =  e.NewPageIndex;
gridView.DataBind();
}Share This
 </description>
		<link>http://codegroups.com/blog/index.php/the-gridview-gridviewid-fired-event-pageindexchanging-which-wasnt-handled-2/</link>
			</item>
</channel>
</rss>
