Click here to Skip to main content
15,887,027 members
Home / Discussions / C#
   

C#

 
QuestionOmitting HTML footer ? Pin
Mohammad Dayyan17-Sep-09 0:47
Mohammad Dayyan17-Sep-09 0:47 
AnswerRe: Omitting HTML footer ? Pin
Not Active17-Sep-09 1:45
mentorNot Active17-Sep-09 1:45 
GeneralRe: Omitting HTML footer ? Pin
Mohammad Dayyan17-Sep-09 2:12
Mohammad Dayyan17-Sep-09 2:12 
GeneralRe: Omitting HTML footer ? Pin
Not Active17-Sep-09 2:34
mentorNot Active17-Sep-09 2:34 
QuestionTCP Socket issue Pin
Harvey Saayman17-Sep-09 0:43
Harvey Saayman17-Sep-09 0:43 
AnswerRe: TCP Socket issue Pin
harold aptroot17-Sep-09 3:17
harold aptroot17-Sep-09 3:17 
GeneralRe: TCP Socket issue Pin
Harvey Saayman17-Sep-09 3:26
Harvey Saayman17-Sep-09 3:26 
GeneralRe: TCP Socket issue Pin
harold aptroot17-Sep-09 3:30
harold aptroot17-Sep-09 3:30 
It seems to be the StreamWriter's fault, what if you send them "normally"?
eg
TcpClient BadgerConnection = new TcpClient();
BadgerConnection.Connect(IPAddress.Parse("10.0.0.100"), 1111);
if (BadgerConnection.Connected)
{
    byte[] Buffer = new byte[]
    {
        161,
        15,
        89,
        1,
        89,
        3,
        102
    };
    NetworkStream ns = BadgerConnection.GetStream();
    ns.Write(Buffer, 0, Buffer.Length);
    ns.Flush();
}



GeneralRe: TCP Socket issue Pin
Harvey Saayman17-Sep-09 5:04
Harvey Saayman17-Sep-09 5:04 
GeneralRe: TCP Socket issue Pin
harold aptroot17-Sep-09 5:35
harold aptroot17-Sep-09 5:35 
GeneralRe: TCP Socket issue Pin
Harvey Saayman17-Sep-09 5:38
Harvey Saayman17-Sep-09 5:38 
GeneralRe: TCP Socket issue Pin
harold aptroot17-Sep-09 5:40
harold aptroot17-Sep-09 5:40 
QuestionLinking to a method using Hyperlinks Pin
Etienne_12317-Sep-09 0:33
Etienne_12317-Sep-09 0:33 
AnswerRe: Linking to a method using Hyperlinks Pin
Keith Barrow17-Sep-09 0:38
professionalKeith Barrow17-Sep-09 0:38 
AnswerRe: Linking to a method using Hyperlinks Pin
musefan17-Sep-09 0:45
musefan17-Sep-09 0:45 
Questionobj\release file Pin
Erdinc2717-Sep-09 0:32
Erdinc2717-Sep-09 0:32 
AnswerRe: obj\release file Pin
Calla17-Sep-09 0:42
Calla17-Sep-09 0:42 
GeneralRe: obj\release file Pin
Erdinc2717-Sep-09 0:58
Erdinc2717-Sep-09 0:58 
GeneralRe: obj\release file Pin
Richard MacCutchan17-Sep-09 5:35
mveRichard MacCutchan17-Sep-09 5:35 
QuestionDataObject Modelling & Relational Presentation Pin
izakfick17-Sep-09 0:27
izakfick17-Sep-09 0:27 
QuestionRetrive rael hard disk serial number no volume Pin
meisamkhajezadeh17-Sep-09 0:20
meisamkhajezadeh17-Sep-09 0:20 
QuestionEmail verification not validation Pin
khosnur16-Sep-09 23:55
khosnur16-Sep-09 23:55 
AnswerRe: Email verification not validation Pin
musefan17-Sep-09 0:08
musefan17-Sep-09 0:08 
GeneralRe: Email verification not validation Pin
khosnur17-Sep-09 0:45
khosnur17-Sep-09 0:45 
AnswerRe: Email verification not validation Pin
Keith Barrow17-Sep-09 0:14
professionalKeith Barrow17-Sep-09 0:14 

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.