Click here to Skip to main content
15,913,722 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSending mail using SMTP Pin
Elizabeth Rani14-Feb-12 19:34
Elizabeth Rani14-Feb-12 19:34 
AnswerRe: Sending mail using SMTP Pin
Bernhard Hiller14-Feb-12 21:05
Bernhard Hiller14-Feb-12 21:05 
GeneralRe: Sending mail using SMTP Pin
Elizabeth Rani14-Feb-12 21:56
Elizabeth Rani14-Feb-12 21:56 
AnswerRe: Sending mail using SMTP Pin
antish120-Feb-12 6:02
antish120-Feb-12 6:02 
QuestionWCF on IIS 6 Pin
Satish_S14-Feb-12 19:06
Satish_S14-Feb-12 19:06 
AnswerRe: WCF on IIS 6 Pin
Keith Barrow14-Feb-12 21:38
professionalKeith Barrow14-Feb-12 21:38 
GeneralRe: WCF on IIS 6 Pin
Satish_S14-Feb-12 23:43
Satish_S14-Feb-12 23:43 
Questionproblem with building an image webservice Pin
kareem olamilekan14-Feb-12 16:07
kareem olamilekan14-Feb-12 16:07 
hello guys, please am currently designing a test website with asp.net(vb)and i also have webservice that i placed all my connections, but the problem am currently having is that whenever i run the webservice to test what i have done it always bring an error, please what can i do. below is the code am talking about.
VB
<WebMethod()> Public Sub InsertInfo(ByVal Name As String, ByVal picbox As FileUpload)
       Dim mycon As New SqlConnection(conStr)
       Dim img As FileUpload = CType(picbox, FileUpload)
       Dim imgByte As Byte() = Nothing
       If img.HasFile AndAlso Not img.PostedFile Is Nothing Then
           Dim file As HttpPostedFile = picbox.PostedFile
           imgByte = New Byte(file.ContentLength - 1) {}

           file.InputStream.Read(imgByte, 0, file.ContentLength)
       End If
       mycon.Open()
       Dim cmdText As String = "Insert into tblSave([Name],picture) VALUES(@Name,@pix)"
       Dim cmd As New SqlCommand(cmdText, mycon)
       cmd.Parameters.AddWithValue("@Name", Name.Trim())
       cmd.Parameters.AddWithValue("@pix", imgByte)
       cmd.ExecuteScalar()

   End Sub

AnswerRe: problem with building an image webservice Pin
Bernhard Hiller14-Feb-12 21:08
Bernhard Hiller14-Feb-12 21:08 
GeneralRe: problem with building an image webservice Pin
kareem olamilekan15-Feb-12 4:39
kareem olamilekan15-Feb-12 4:39 
QuestionHow to get INPUT value with this ENCTYPE="multipart/form-data" Pin
hifiger200414-Feb-12 0:46
hifiger200414-Feb-12 0:46 
Questionwithdraw money from PayPal Pin
farogh haider14-Feb-12 0:39
farogh haider14-Feb-12 0:39 
QuestionTLS Enabled Pin
padmanabhan N13-Feb-12 5:31
padmanabhan N13-Feb-12 5:31 
AnswerRe: TLS Enabled Pin
Not Active13-Feb-12 8:00
mentorNot Active13-Feb-12 8:00 
QuestionCould not find part of the path..... error Pin
Jassim Rahma12-Feb-12 22:48
Jassim Rahma12-Feb-12 22:48 
AnswerRe: Could not find part of the path..... error Pin
thatraja13-Feb-12 5:45
professionalthatraja13-Feb-12 5:45 
Questioniwanna get share trading application project using c# with ASP.NET Pin
fayazbaba12-Feb-12 21:15
fayazbaba12-Feb-12 21:15 
AnswerRe: iwanna get share trading application project using c# with ASP.NET Pin
Abhinav S12-Feb-12 21:32
Abhinav S12-Feb-12 21:32 
AnswerRe: iwanna get share trading application project using c# with ASP.NET Pin
Richard MacCutchan12-Feb-12 21:53
mveRichard MacCutchan12-Feb-12 21:53 
QuestionIf column not found in table or columns is added,how to handle it asp.net Pin
Member 322226412-Feb-12 18:42
Member 322226412-Feb-12 18:42 
AnswerRe: If column not found in table or columns is added,how to handle it asp.net Pin
Blue_Boy12-Feb-12 21:33
Blue_Boy12-Feb-12 21:33 
AnswerRe: If column not found in table or columns is added,how to handle it asp.net Pin
antish120-Feb-12 6:06
antish120-Feb-12 6:06 
Questionstoring bread crumb state after postback Pin
uglyeyes12-Feb-12 17:45
uglyeyes12-Feb-12 17:45 
AnswerRe: storing bread crumb state after postback Pin
Rahul Rajat Singh15-Feb-12 20:25
professionalRahul Rajat Singh15-Feb-12 20:25 
QuestionHow to use PayPal Payment Integration in asp.net C#,sql2005 Pin
jai rawat10-Feb-12 21:09
jai rawat10-Feb-12 21:09 

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.