Click here to Skip to main content
15,889,216 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionon keypress enter to submit login details IE is working but in firefox not working Pin
Nath10-Feb-10 15:40
Nath10-Feb-10 15:40 
QuestionCalling webservice Pin
Ramkithepower10-Feb-10 15:33
Ramkithepower10-Feb-10 15:33 
AnswerRe: Calling webservice Pin
Pranay Rana10-Feb-10 18:18
professionalPranay Rana10-Feb-10 18:18 
AnswerRe: Calling webservice Pin
sashidhar10-Feb-10 18:24
sashidhar10-Feb-10 18:24 
GeneralRe: Calling webservice Pin
Ramkithepower11-Feb-10 6:03
Ramkithepower11-Feb-10 6:03 
GeneralRe: Calling webservice Pin
sashidhar11-Feb-10 17:43
sashidhar11-Feb-10 17:43 
QuestionWorking with Memory Streams Pin
Hema Bairavan10-Feb-10 7:19
Hema Bairavan10-Feb-10 7:19 
AnswerRe: Working with Memory Streams Pin
Steve Wellens10-Feb-10 7:49
Steve Wellens10-Feb-10 7:49 
Do you mean something like this?

MemoryStream MS1 = new MemoryStream(new byte[] { 0x01, 0x02, 0x03 });
MemoryStream MS2 = new MemoryStream(new byte[] { 0x04, 0x05, 0x06 });

MemoryStream MS3 = new MemoryStream();
MS3.SetLength(MS1.Length + MS2.Length);

MS3.Write(MS1.ToArray(), 0, (int)MS1.Length);
MS3.Write(MS2.ToArray(), 0, (int)MS2.Length);

Byte[] Result = MS3.ToArray();
foreach (Byte B in Result)
    Response.Write(B.ToString() + "  ");
Steve Wellens

GeneralRe: Working with Memory Streams Pin
Hema Bairavan10-Feb-10 8:11
Hema Bairavan10-Feb-10 8:11 
GeneralRe: Working with Memory Streams Pin
Steve Wellens10-Feb-10 8:16
Steve Wellens10-Feb-10 8:16 
GeneralRe: Working with Memory Streams Pin
Hema Bairavan10-Feb-10 8:21
Hema Bairavan10-Feb-10 8:21 
AnswerRe: Working with Memory Streams Pin
i gr810-Feb-10 18:18
i gr810-Feb-10 18:18 
GeneralRe: Working with Memory Streams Pin
Hema Bairavan10-Feb-10 19:06
Hema Bairavan10-Feb-10 19:06 
QuestionInvalid registration key Pin
nakins10-Feb-10 5:00
nakins10-Feb-10 5:00 
QuestionOther alternative to WS-Security [modified] Pin
raquidd2210-Feb-10 4:04
raquidd2210-Feb-10 4:04 
AnswerRe: call web service from one server Pin
N a v a n e e t h10-Feb-10 4:23
N a v a n e e t h10-Feb-10 4:23 
QuestionHow to play movie clips and swf files in asp.net Pin
CHANDUA10-Feb-10 2:27
CHANDUA10-Feb-10 2:27 
AnswerRe: How to play movie clips and swf files in asp.net Pin
Richard MacCutchan10-Feb-10 4:45
mveRichard MacCutchan10-Feb-10 4:45 
QuestionPopUp Pin
Civic0610-Feb-10 2:12
Civic0610-Feb-10 2:12 
AnswerRe: PopUp Pin
PunkIsNotDead10-Feb-10 8:32
PunkIsNotDead10-Feb-10 8:32 
GeneralRe: PopUp Pin
Civic0611-Feb-10 2:15
Civic0611-Feb-10 2:15 
QuestionBoundFiled/GridView Pin
-Muc_10-Feb-10 1:25
-Muc_10-Feb-10 1:25 
AnswerRe: BoundFiled/GridView Pin
PunkIsNotDead10-Feb-10 8:26
PunkIsNotDead10-Feb-10 8:26 
GeneralRe: BoundFiled/GridView Pin
-Muc_10-Feb-10 9:18
-Muc_10-Feb-10 9:18 
GeneralRe: BoundFiled/GridView Pin
PunkIsNotDead10-Feb-10 10:40
PunkIsNotDead10-Feb-10 10:40 

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.