icon
Leave a message

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Friday, 31 August 2012

What is CSS,Type of Css,Inline,Internal,External Style Sheet

CSS (Cascading Style Sheets)  What is CSS?  CSS stands for cascading style sheets Styles define how to display HTML elements Styles are normally stored in Style Sheets Styles were added to HTML 4.0 to solve a problem External Style Sheets can save you a lot of work External Style Sheets are stored in CSS files Multiple style definitions will cascade into one.                 Style sheets are a very powerful tool for the Web site developer....

Tuesday, 21 August 2012

File Handling in C# ..NET ( How to Save Image Binary Format in Database Table and retrieve it..)

Frist we  create table TableImage in database test and image is saved  in table binary  format……………………………………… use test Create table TableImage (Id int primary key,Name nvarchar(50),UserImage varbinary(max)) How  to  save  image  in table in Binary Format and how to retrive it in Windows Application (C# .NET)……………….. using System; using System.Collections.Generic; using System.ComponentModel; using...

Sunday, 19 August 2012

How to Use FileUpload in Asp.Net ,How to Save Image ,Picture in Website Folder

First we  craete  a  table UserImage using database test use testcreate  table UserImage(SrNo int  primary key,Name nvarchar(50),UserImg nvarchar(max)) After than we  create  a Web from  like  this and  take  a Folder Image  in our  WebSite  for  saving  image  which are  upload  by  user……….. This  is  source code of Default.aspx…………………….. <%@...