|
it
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
text wont format from a form - emailform, passes it to the .asp page and then emails a certain department. This is what im getting in the emails: notice how the AddyLine 2 is over, <it needs a space> and the same for Addy Line 4. Address::: Addy Line 1, Addy 2nd Addy Line 2, Addy 3rd Addy Line 3 addy 4th It should look like: Address::: Addy Line 1, Addy 2nd Addy Line 2, Addy 3rd Addy Line 3 addy 4th See how its all aligned now. This is the code thats used: " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ VbCrLf & _ VbCrLf & _ Any ideas please? Muchly apreciated Advo wrote:
Show quoteHide quote > Hi there, basically ive got a script which takes information from a Ermm... Get rid of the space? No. Sorry. That answer is so> form, passes it to the .asp page and then emails a certain department. > > This is what im getting in the emails: notice how the AddyLine 2 is > over, <it needs a space> and the same for Addy Line 4. > > Address::: > > Addy Line 1, Addy 2nd > Addy Line 2, Addy 3rd > Addy Line 3 addy 4th > > It should look like: > > Address::: > > Addy Line 1, Addy 2nd > Addy Line 2, Addy 3rd > Addy Line 3 addy 4th > > See how its all aligned now. > > This is the code thats used: > > " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ > VbCrLf & _ > VbCrLf & _ > > Any ideas please? > blindingly obvious I must have missed something... -- Mike Brind we need the first space, but we also need the other spaces for the
other lines too, so each line has a space. Mike Brind wrote: Show quoteHide quote > Advo wrote: > > Hi there, basically ive got a script which takes information from a > > form, passes it to the .asp page and then emails a certain department. > > > > This is what im getting in the emails: notice how the AddyLine 2 is > > over, <it needs a space> and the same for Addy Line 4. > > > > Address::: > > > > Addy Line 1, Addy 2nd > > Addy Line 2, Addy 3rd > > Addy Line 3 addy 4th > > > > It should look like: > > > > Address::: > > > > Addy Line 1, Addy 2nd > > Addy Line 2, Addy 3rd > > Addy Line 3 addy 4th > > > > See how its all aligned now. > > > > This is the code thats used: > > > > " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ > > VbCrLf & _ > > VbCrLf & _ > > > > Any ideas please? > > > > Ermm... Get rid of the space? No. Sorry. That answer is so > blindingly obvious I must have missed something... > > -- > Mike Brind You didn't provide the code to show us what you did with the second and
third lines. Since these are the ones you are having trouble with, sight of your code would be useful. -- Show quoteHide quoteMike Brind Advo wrote: > we need the first space, but we also need the other spaces for the > other lines too, so each line has a space. > > > Mike Brind wrote: > > Advo wrote: > > > Hi there, basically ive got a script which takes information from a > > > form, passes it to the .asp page and then emails a certain department. > > > > > > This is what im getting in the emails: notice how the AddyLine 2 is > > > over, <it needs a space> and the same for Addy Line 4. > > > > > > Address::: > > > > > > Addy Line 1, Addy 2nd > > > Addy Line 2, Addy 3rd > > > Addy Line 3 addy 4th > > > > > > It should look like: > > > > > > Address::: > > > > > > Addy Line 1, Addy 2nd > > > Addy Line 2, Addy 3rd > > > Addy Line 3 addy 4th > > > > > > See how its all aligned now. > > > > > > This is the code thats used: > > > > > > " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ > > > VbCrLf & _ > > > VbCrLf & _ > > > > > > Any ideas please? > > > > > > > Ermm... Get rid of the space? No. Sorry. That answer is so > > blindingly obvious I must have missed something... > > > > -- > > Mike Brind That is the only code thats in place at the moment. i can change it,
but this is the first time ive looked at it really. all that does is really look after the first line then i take it, so is there a way i can acomodate for aditional lines by new lines or by commas, depending on how they decide to use the text area. Thanks for the time! Mike Brind wrote: Show quoteHide quote > You didn't provide the code to show us what you did with the second and > third lines. Since these are the ones you are having trouble with, > sight of your code would be useful. > > -- > Mike Brind > > Advo wrote: > > we need the first space, but we also need the other spaces for the > > other lines too, so each line has a space. > > > > > > Mike Brind wrote: > > > Advo wrote: > > > > Hi there, basically ive got a script which takes information from a > > > > form, passes it to the .asp page and then emails a certain department. > > > > > > > > This is what im getting in the emails: notice how the AddyLine 2 is > > > > over, <it needs a space> and the same for Addy Line 4. > > > > > > > > Address::: > > > > > > > > Addy Line 1, Addy 2nd > > > > Addy Line 2, Addy 3rd > > > > Addy Line 3 addy 4th > > > > > > > > It should look like: > > > > > > > > Address::: > > > > > > > > Addy Line 1, Addy 2nd > > > > Addy Line 2, Addy 3rd > > > > Addy Line 3 addy 4th > > > > > > > > See how its all aligned now. > > > > > > > > This is the code thats used: > > > > > > > > " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ > > > > VbCrLf & _ > > > > VbCrLf & _ > > > > > > > > Any ideas please? > > > > > > > > > > Ermm... Get rid of the space? No. Sorry. That answer is so > > > blindingly obvious I must have missed something... > > > > > > -- > > > Mike Brind Huh? How do you get the second and third line to display then? I
mean, the issue you described in the OP was that your lines (plural) were not aligning, is that right? If so, you could only know that if you were writing more than one line? <quote> This is what im getting in the emails: notice how the AddyLine 2 is over, <it needs a space> and the same for Addy Line 4. Address::: Addy Line 1, Addy 2nd Addy Line 2, Addy 3rd Addy Line 3 addy 4th <end quote> Have I entered the twilight zone? I really have missed something, haven't I? -- Show quoteHide quoteMike Brind Advo wrote: > That is the only code thats in place at the moment. i can change it, > but this is the first time ive looked at it really. > > all that does is really look after the first line then i take it, so is > there a way i can acomodate for aditional lines by new lines or by > commas, depending on how they decide to use the text area. > > Thanks for the time! > > > Mike Brind wrote: > > You didn't provide the code to show us what you did with the second and > > third lines. Since these are the ones you are having trouble with, > > sight of your code would be useful. > > > > -- > > Mike Brind > > > > Advo wrote: > > > we need the first space, but we also need the other spaces for the > > > other lines too, so each line has a space. > > > > > > > > > Mike Brind wrote: > > > > Advo wrote: > > > > > Hi there, basically ive got a script which takes information from a > > > > > form, passes it to the .asp page and then emails a certain department. > > > > > > > > > > This is what im getting in the emails: notice how the AddyLine 2 is > > > > > over, <it needs a space> and the same for Addy Line 4. > > > > > > > > > > Address::: > > > > > > > > > > Addy Line 1, Addy 2nd > > > > > Addy Line 2, Addy 3rd > > > > > Addy Line 3 addy 4th > > > > > > > > > > It should look like: > > > > > > > > > > Address::: > > > > > > > > > > Addy Line 1, Addy 2nd > > > > > Addy Line 2, Addy 3rd > > > > > Addy Line 3 addy 4th > > > > > > > > > > See how its all aligned now. > > > > > > > > > > This is the code thats used: > > > > > > > > > > " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ > > > > > VbCrLf & _ > > > > > VbCrLf & _ > > > > > > > > > > Any ideas please? > > > > > > > > > > > > > Ermm... Get rid of the space? No. Sorry. That answer is so > > > > blindingly obvious I must have missed something... > > > > > > > > -- > > > > Mike Brind i'll start again lol, sorry for all the confusion.
Basically, the address is stored in one variable, and we currently use the code: " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ VbCrLf & _ VbCrLf & _ The way the other fields are set up, is that each line has a space before it, such as: Field1 Field2 Field3 but now because the address is out of line, its doing: Field1 Field2 Field3 AddressLine1 AddressLine2 AddressLine3 If that makes any sense. Basically i want to make it so that any lines after the addressLine1 also have spaces, which would result in an entry like: Field1 Field2 Field3 AddressLine1 AddressLine2 AddressLine3 Cheers
Show quote
Hide quote
"Advo" <max_misch***@hotmail.com> wrote in message Replace(Request.Form("address") , vbCrLf, " " & vbCrLf)news:1155291252.316820.84780@h48g2000cwc.googlegroups.com... > i'll start again lol, sorry for all the confusion. > > Basically, the address is stored in one variable, and we currently use > the code: > > " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ > VbCrLf & _ > VbCrLf & _ > > > > The way the other fields are set up, is that each line has a space > before it, such as: > > Field1 > Field2 > Field3 > > but now because the address is out of line, its doing: > > Field1 > Field2 > Field3 > AddressLine1 > AddressLine2 > AddressLine3 > > If that makes any sense. > > Basically i want to make it so that any lines after the addressLine1 > also have spaces, which would result in an entry like: > > Field1 > Field2 > Field3 > AddressLine1 > AddressLine2 > AddressLine3 > > > Cheers > Anthony Jones wrote:
Show quoteHide quote > "Advo" <max_misch***@hotmail.com> wrote in message Surely Replace(Request.Form("address") , vbCrLf, vbCrLf & " " ) ? I> news:1155291252.316820.84780@h48g2000cwc.googlegroups.com... > > i'll start again lol, sorry for all the confusion. > > > > Basically, the address is stored in one variable, and we currently use > > the code: > > > > " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ > > VbCrLf & _ > > VbCrLf & _ > > > > > > > > The way the other fields are set up, is that each line has a space > > before it, such as: > > > > Field1 > > Field2 > > Field3 > > > > but now because the address is out of line, its doing: > > > > Field1 > > Field2 > > Field3 > > AddressLine1 > > AddressLine2 > > AddressLine3 > > > > If that makes any sense. > > > > Basically i want to make it so that any lines after the addressLine1 > > also have spaces, which would result in an entry like: > > > > Field1 > > Field2 > > Field3 > > AddressLine1 > > AddressLine2 > > AddressLine3 > > > > > > Cheers > > > > Replace(Request.Form("address") , vbCrLf, " " & vbCrLf) believe the OP wants to indent each line one space, not add a space before the line break. -- Mike Brind
Show quote
Hide quote
"Mike Brind" <paxton***@hotmail.com> wrote in message oops well spotted :)news:1155300201.305022.116790@m79g2000cwm.googlegroups.com... > > Anthony Jones wrote: > > "Advo" <max_misch***@hotmail.com> wrote in message > > news:1155291252.316820.84780@h48g2000cwc.googlegroups.com... > > > i'll start again lol, sorry for all the confusion. > > > > > > Basically, the address is stored in one variable, and we currently use > > > the code: > > > > > > " Address::: " & VbCrLf & VbCrLf & " " & Request.Form("address") & _ > > > VbCrLf & _ > > > VbCrLf & _ > > > > > > > > > > > > The way the other fields are set up, is that each line has a space > > > before it, such as: > > > > > > Field1 > > > Field2 > > > Field3 > > > > > > but now because the address is out of line, its doing: > > > > > > Field1 > > > Field2 > > > Field3 > > > AddressLine1 > > > AddressLine2 > > > AddressLine3 > > > > > > If that makes any sense. > > > > > > Basically i want to make it so that any lines after the addressLine1 > > > also have spaces, which would result in an entry like: > > > > > > Field1 > > > Field2 > > > Field3 > > > AddressLine1 > > > AddressLine2 > > > AddressLine3 > > > > > > > > > Cheers > > > > > > > Replace(Request.Form("address") , vbCrLf, " " & vbCrLf) > > Surely Replace(Request.Form("address") , vbCrLf, vbCrLf & " " ) ? I > believe the OP wants to indent each line one space, not add a space > before the line break. Show quoteHide quote > > -- > Mike Brind >
Other interesting topics
|
|||||||||||||||||||||||