Feb 12, 2008 #1 ringadeal Technical User Jan 16, 2008 67 US How do I create a visible text space between the Response.Write("A") and the &(Recordset4.Fields.Item("title_fam").value) in the following code: Code: Response.Write("A") &(Recordset4.Fields.Item("title_fam").Value)
How do I create a visible text space between the Response.Write("A") and the &(Recordset4.Fields.Item("title_fam").value) in the following code: Code: Response.Write("A") &(Recordset4.Fields.Item("title_fam").Value)
Feb 12, 2008 1 #2 gmmastros Programmer Feb 15, 2005 14,901 US Code: Response.Write("A[!] [/!]") &(Recordset4.Fields.Item("title_fam").Value) -George "The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom Upvote 0 Downvote
Code: Response.Write("A[!] [/!]") &(Recordset4.Fields.Item("title_fam").Value) -George "The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom