Click here to Skip to main content
15,893,381 members
Articles / Web Development / ASP.NET

Image Handling In ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.89/5 (52 votes)
2 Feb 2012CPOL5 min read 375.1K   4   123  
Explaining how to store,display, create thumbnails and add watermark on image
<?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
	<connectionStrings>
  <add name="mysampledbConnectionString" connectionString="Data Source=MAKHAAI\SQLEXPRESS;Initial Catalog=mysampledb;Integrated Security=True"
   providerName="System.Data.SqlClient" />
 </connectionStrings>
 <system.web>
		<compilation debug="true" targetFramework="4.0"/>
	</system.web>
	<appSettings>
		<add key="sqlConn" value="Data Source=MAKHAAI\SQLEXPRESS;Initial Catalog=mysampledb;Integrated Security=True"/>
	</appSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
Microsoft Certified Professional Developer.

Comments and Discussions