Click here to Skip to main content
15,892,298 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: compare Duration using asp.net vb Pin
ABitSmart9-Feb-09 18:37
ABitSmart9-Feb-09 18:37 
GeneralRe: compare Duration using asp.net vb Pin
Sarfaraj Ahmed9-Feb-09 18:49
Sarfaraj Ahmed9-Feb-09 18:49 
GeneralRe: compare Duration using asp.net vb Pin
ABitSmart9-Feb-09 19:06
ABitSmart9-Feb-09 19:06 
GeneralRe: compare Duration using asp.net vb Pin
Sarfaraj Ahmed9-Feb-09 19:04
Sarfaraj Ahmed9-Feb-09 19:04 
GeneralRe: compare Duration using asp.net vb Pin
ABitSmart9-Feb-09 19:08
ABitSmart9-Feb-09 19:08 
Questioninsert image into server 2000 without using the HtmlInputFile control Pin
Anita_Kamat_inds9-Feb-09 16:52
Anita_Kamat_inds9-Feb-09 16:52 
AnswerRe: insert image into server 2000 without using the HtmlInputFile control Pin
N a v a n e e t h9-Feb-09 17:37
N a v a n e e t h9-Feb-09 17:37 
GeneralRe: insert image into server 2000 without using the HtmlInputFile control Pin
Anita_Kamat_inds9-Feb-09 17:42
Anita_Kamat_inds9-Feb-09 17:42 
well I used this and it works.

string sFilePath = @"C:\FF73JJ0000.tif";

byte[] bFile = new byte[fs.Length];
fs.Read(bFile, 0, bFile.Length);

SqlConnection connection = new SqlConnection(connectionString);

connection.Open ();
SqlCommand cmd = new SqlCommand ("insert into tblViewContracts "
+ "(ViewImage) values (@pic)", connection);
cmd.Parameters.Add ("@pic", bFile);

this kinds of works.
GeneralRe: insert image into server 2000 without using the HtmlInputFile control Pin
N a v a n e e t h9-Feb-09 17:59
N a v a n e e t h9-Feb-09 17:59 
GeneralRe: insert image into server 2000 without using the HtmlInputFile control Pin
Anita_Kamat_inds9-Feb-09 18:00
Anita_Kamat_inds9-Feb-09 18:00 
GeneralRe: insert image into server 2000 without using the HtmlInputFile control Pin
N a v a n e e t h9-Feb-09 18:02
N a v a n e e t h9-Feb-09 18:02 
GeneralRe: insert image into server 2000 without using the HtmlInputFile control Pin
Anita_Kamat_inds9-Feb-09 18:08
Anita_Kamat_inds9-Feb-09 18:08 
GeneralRe: insert image into server 2000 without using the HtmlInputFile control Pin
N a v a n e e t h9-Feb-09 18:14
N a v a n e e t h9-Feb-09 18:14 
Questioncompare Date and Time Pin
Sarfaraj Ahmed9-Feb-09 16:41
Sarfaraj Ahmed9-Feb-09 16:41 
AnswerRe: compare Date and Time Pin
ABitSmart9-Feb-09 18:46
ABitSmart9-Feb-09 18:46 
GeneralRe: compare Date and Time Pin
Sarfaraj Ahmed9-Feb-09 18:52
Sarfaraj Ahmed9-Feb-09 18:52 
AnswerRe: compare Date and Time Pin
Abhijit Jana9-Feb-09 19:00
professionalAbhijit Jana9-Feb-09 19:00 
GeneralRe: compare Date and Time Pin
Sarfaraj Ahmed9-Feb-09 19:08
Sarfaraj Ahmed9-Feb-09 19:08 
GeneralRe: compare Date and Time Pin
N a v a n e e t h9-Feb-09 20:53
N a v a n e e t h9-Feb-09 20:53 
QuestionSession array Pin
Sandraa9-Feb-09 9:59
Sandraa9-Feb-09 9:59 
AnswerRe: Session array Pin
Ranjit Viswakumar9-Feb-09 16:12
Ranjit Viswakumar9-Feb-09 16:12 
GeneralRe: Session array Pin
Sandraa11-Feb-09 8:40
Sandraa11-Feb-09 8:40 
GeneralRe: Session array Pin
Sandraa11-Feb-09 8:49
Sandraa11-Feb-09 8:49 
Questionsenerio Pin
suni_dotnet9-Feb-09 5:48
suni_dotnet9-Feb-09 5:48 
AnswerRe: senerio Pin
Ray Wampler9-Feb-09 6:34
Ray Wampler9-Feb-09 6:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.