Members Login.
 

Please register HERE to be part of our Community
Contest of the Day.
 
Current Promotions.
 
Earn By Posting
 
Participate in forum and Earn $$$.
  • Referrer Credit - BRL$ 100
  • Positive Rep Cr. - BRL$ 3
  • New Thread Cr.- BRL$ 3
  • Posting Cr. - BRL$ 2
  • Post size Credit
Full List of BRL$ Earnings
Sponsors.
 


Web Development Discussion related to web development using asp, asp.net, php, perl, JSP, Cold Fusion

Reply
  #1 (permalink)  
Old 09-21-2007
New Foot Prints
 
Join Date: Sep 2007
Posts: 14
BRL$: 85.93
Rep Power: 0
hanusoft is on a distinguished road
Default Example of Image Upload

Here we are uploading images in File System and storing path in the database.

http://www.hanusoftware.com

Code (ImageUpload.aspx.cs) :-
private void Button1_Click(object sender, System.EventArgs e)
{
// Here I am uploading images in Images folder of C drive.
int intResult=0;
string strPath = @"c:\Images\"+Path.GetFileName(File1.PostedFile.Fi leName);
SqlConnection con = new SqlConnection("server=.;uid=sa;database=pubs;pwd=" );
SqlCommand com = new SqlCommand("Insert into Category(name,imagepath) values(@name,@imagepath)",con);
com.Parameters.Add("@name",TextBox1.Text);
com.Parameters.Add("@imagepath",strPath);
con.Open();
intResult = Convert.ToInt32(com.ExecuteNonQuery());
if(intResult != 0)
{
File1.PostedFile.SaveAs(strPath);
Response.Write("Record Inserted.");
}
}




Software Development Company
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


Current Promotions... Post a New Thread anywhere on Search Engine Optimization Board and earn BRL$ 5 for every thread.
Important - Read before posting Please carefully read the Global Rules and Posting Rules for GPT / Buy - Sell Offers / Link Exchange sections before posting.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Image Upload in PHP Rss_Feeds PHP 0 09-20-2007 01:34 AM
Can You Add a Pop Up/Close Window to an Image Popping Up from A Rollover? mr_atom JavaScript 0 09-19-2007 01:21 AM
Simple Image Upload Script Rss_Feeds PHP 0 09-14-2007 12:14 AM
Upload Image Scripts Rss_Feeds PHP 0 07-21-2007 12:22 AM
Need help turning a IMAGE upload script into a File uploader Rss_Feeds PHP 0 07-15-2007 07:27 AM


 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95