| Author: Abhishekh 18 Jun 2004 | Member Level: Bronze Points : 0 |
the article was neat. i would also like to know how we can store images as thumbnails.
|
| Author: critic 18 Jun 2004 | Member Level: Bronze Points : 0 |
You have given a link to an image and a demo application, but both are missing. If I click, "Click here to download the demo application.", no demo is available... !!
|
| Author: VISU 06 Jul 2004 | Member Level: Bronze Points : 0 |
Its Very good article. its neat and Understnadable by all the Programmers and Beginners also.
Thanks.
|
| Author: Faniel 08 Jul 2004 | Member Level: Bronze Points : 0 |
Hi I was just searching for this for last 2 day.. Thanks man.. it works fine and looks good..
|
| Author: Shailendra Gupta 09 Jul 2004 | Member Level: Bronze Points : 0 |
hi, it was asked in interview. thnx.
|
| Author: jitender 06 Aug 2004 | Member Level: Bronze Points : 0 |
the article is good, it will help many ppls. But i think there should be some other method also to store large images.
jitu.
|
| Author: Erick Shuai 11 Aug 2004 | Member Level: Bronze Points : 0 |
You do those in Windows Application , How to do these in Web Application?
|
| Author: Rathish Nair 08 Sep 2004 | Member Level: Bronze Points : 0 |
Your article is quiet good, but I would like to know about storing documents into SQL server. Is that possible ?
|
| Author: chakravarthy 07 Oct 2004 | Member Level: Bronze Points : 0 |
The article is simply superb. Its working fine with sql server database. May i know how to do the same with oracle database.
Looking forward ur reply Cheers Chakri from Vizag
|
| Author: siva kumar 14 Oct 2004 | Member Level: Bronze Points : 0 |
ur article is giving encouragement to a lot for me and everyone. please continue to mail ur documents with ode. freshers like we need ur guide.
thanks for ur article once agin
|
| Author: Anantha 27 Nov 2004 | Member Level: Bronze Points : 0 |
Hi,
It is a very goodArticle.It is working fine.
Thannx Satya
|
| Author: Tushar 29 Nov 2004 | Member Level: Bronze Points : 0 |
Error: The Selected file is not valid Visual studeio application
|
| Author: c.ashok 02 Feb 2007 | Member Level: Bronze Points : 0 |
really it is very nice i tried a lot regarding storing images into sql atlast i found in this website thanks a lot for publishing this article
|
| Author: Mohammed Shafeek 23 Nov 2007 | Member Level: Bronze Points : 0 |
Its getting error while running ur application upload is working Problem in download error description is 'An unhandled exception of type 'System.ArgumentException' occurred in system.drawing.dll'
|
| Author: senthil kumar 20 Mar 2008 | Member Level: Silver Points : 0 |
Superrrrrrrrrrrrr.................
|
| Author: hannahgrace 01 Jul 2008 | Member Level: Bronze Points : 1 |
i tried to use the code but it didn't work. it gives me PARAMETER IS NOT VALID error..
|
| Author: surender 01 Aug 2008 | Member Level: Silver Points : 0 |
the article was good and thanks for sharing your knowledge...
|
| Author: ankit_champaneriya 07 Mar 2009 | Member Level: Silver Points : 1 |
like image u can store and retrive other files also.. If you want to retrive/download file.. do following. put button. popup attanchd download.aspx file through code. just change dataset used in that. and u will get your file..
regards, ANKIT CHAMPANERIYA
download.rar |
| Author: AMARJIT SINGH 24 Mar 2009 | Member Level: Gold Points : 2 |
Hi friend,
Your article is realy very good.
it is quite interesting. BUT THIS CAN BE DONE WITHOUT USING STORED PROCEDURE BY SOME SLIGHT CHANGES.
i find at some places in your code that if instead of your this code that you have mentioned(in your code) below :
--------------
Dim con As New System.Data.SqlClient.SqlConnection("data source=mt5;initial catalog=master; user id=sa;password=mms")
con.Open()
Dim cmd As New System.Data.SqlClient.SqlCommand("select * from SampleImageTable")
cmd.Connection = con cmd.CommandType = CommandType.Text
Dim da As New System.Data.SqlClient.SqlDataAdapter(cmd)
---------------
instead of the above code you can also use these few lines of codes :--- ----------------
str = "select * from SampleImageTable"
Dim constring As String
constring = "data source=mt5;initial catalog=master; user id=sa;password=mms"
Dim da As New SqlDataAdapter(str, constring)
---------------- rest of your code is perfect.
try it. Enjoy programming.
(AMARJIT SINGH)
|
| Author: sri 25 Apr 2009 | Member Level: Silver Points : 1 |
Hi srunokshi,
Your article was simply superb.I dont have any idea about about store image in sql ..
But ur article explains me too good..
Tx Krishna
|
| Author: Marco Jimenez 08 Sep 2009 | Member Level: Bronze Points : 0 |
Great article, it helped me a lot. Thank you very much
|