Click here to Skip to main content
15,888,984 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Gridview Pin
Wes Aday12-Aug-12 6:45
professionalWes Aday12-Aug-12 6:45 
GeneralRe: Gridview Pin
sravsailu12-Aug-12 7:05
sravsailu12-Aug-12 7:05 
Questionhow to extrack an image from an email and save it on a disk Pin
Member 798388410-Aug-12 18:17
Member 798388410-Aug-12 18:17 
AnswerRe: how to extrack an image from an email and save it on a disk Pin
Richard MacCutchan10-Aug-12 21:53
mveRichard MacCutchan10-Aug-12 21:53 
Questionsession variables Pin
sc steinhayse10-Aug-12 17:28
sc steinhayse10-Aug-12 17:28 
AnswerRe: session variables Pin
Shameel14-Aug-12 0:40
professionalShameel14-Aug-12 0:40 
QuestionReading data from Excel Pin
indian14310-Aug-12 7:15
indian14310-Aug-12 7:15 
AnswerRe: Reading data from Excel Pin
jkirkerx10-Aug-12 10:33
professionaljkirkerx10-Aug-12 10:33 
you make a byte() array for the source, and then copy it to a memorysteam if needed, or just pass the byte array to the destination.

Something like this, I don't something to test it on now
Dim excelFile As byte() = {input}
ByVal excelFile() As Byte

If you need a primitive, that's different.

credit to

[vinz^]
Dim arr As New ArrayList()
arr.Add("AAA")
arr.Add("BBB")
arr.Add("CCC")

Dim byteArray As Byte() = New Byte(2) {}
For i As Integer = 0 To arr.Count - 1
    byteArray = DirectCast(arr(i), Byte())
Next
'Read byteArray to stream
Dim stream As New System.IO.MemoryStream(byteArray)

GeneralRe: Reading data from Excel Pin
indian14310-Aug-12 12:28
indian14310-Aug-12 12:28 
GeneralRe: Reading data from Excel Pin
jkirkerx10-Aug-12 19:12
professionaljkirkerx10-Aug-12 19:12 
Question(Input string was not in a correct format) with ExecuteReader Pin
Jassim Rahma10-Aug-12 2:33
Jassim Rahma10-Aug-12 2:33 
AnswerRe: (Input string was not in a correct format) with ExecuteReader Pin
WebMaster10-Aug-12 2:52
WebMaster10-Aug-12 2:52 
AnswerRe: (Input string was not in a correct format) with ExecuteReader Pin
Parthi Bun10-Aug-12 3:06
Parthi Bun10-Aug-12 3:06 
AnswerRe: (Input string was not in a correct format) with ExecuteReader Pin
StianSandberg10-Aug-12 3:26
StianSandberg10-Aug-12 3:26 
GeneralRe: (Input string was not in a correct format) with ExecuteReader Pin
Jassim Rahma10-Aug-12 4:03
Jassim Rahma10-Aug-12 4:03 
GeneralRe: (Input string was not in a correct format) with ExecuteReader Pin
Jassim Rahma11-Aug-12 9:11
Jassim Rahma11-Aug-12 9:11 
AnswerRe: (Input string was not in a correct format) with ExecuteReader Pin
Shameel14-Aug-12 0:46
professionalShameel14-Aug-12 0:46 
Questionasp.net Pin
Rajesh.paka10-Aug-12 2:08
Rajesh.paka10-Aug-12 2:08 
AnswerRe: asp.net Pin
Wes Aday10-Aug-12 4:00
professionalWes Aday10-Aug-12 4:00 
Questionstrange issue with cache application block (ENT LIB 5) Pin
Luca Dominici9-Aug-12 23:23
Luca Dominici9-Aug-12 23:23 
AnswerRe: strange issue with cache application block (ENT LIB 5) Pin
Pete O'Hanlon10-Aug-12 0:42
mvePete O'Hanlon10-Aug-12 0:42 
AnswerRe: strange issue with cache application block (ENT LIB 5) Pin
jkirkerx10-Aug-12 10:12
professionaljkirkerx10-Aug-12 10:12 
Questiondebug javascript Pin
dcof9-Aug-12 18:44
dcof9-Aug-12 18:44 
AnswerRe: debug javascript Pin
AnnieCalvert9-Aug-12 20:09
AnnieCalvert9-Aug-12 20:09 
GeneralRe: debug javascript Pin
dcof10-Aug-12 4:31
dcof10-Aug-12 4:31 

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.