RE: [DotNetDevelopment] Re: Post Data using Httpwebrequest in Asp.net

2012-07-11 Thread Jeena Ajiesh
Subject: Re: [DotNetDevelopment] Re: Post Data using Httpwebrequest in Asp.net I'm assuming that Message is a String so at whatever point Message is set ... add .. If Message.Contains(" ") Then Message = Message.Replace(" ", " &") Yes it is a do

Re: [DotNetDevelopment] Re: Post Data using Httpwebrequest in Asp.net

2012-07-11 Thread Barry Etheridge
I'm assuming that Message is a String so at whatever point Message is set ... add .. If Message.Contains(" ") Then Message = Message.Replace(" ", " &") Yes it is a double ampersand; needed to register as a literal. On Tuesday, 10 July 2012 10:40:59 UTC+1, Jeena wrote: > > Thanks for the reply,

RE: [DotNetDevelopment] Re: Post Data using Httpwebrequest in Asp.net

2012-07-10 Thread Jeena Ajiesh
Thanks for the reply, But this message is directly entered from Client side, so is there any chance to detect the space & add this '' in between? Thanks & Regards Jeena Ajiesh From: dotnetdevelopment@googlegroups.com [mailto:dotnetdevelopment@googlegroups.com] On Behalf Of Barry Etheridge