How to align footer content to right.I have written code like this. I am not able to understand where to place text-align:right.
sample=“sample” & “,”& 120
Response.Write “<call command=”“attachFooter”">"
Response.Write “” & sample& “”
Response.Write “”
The correct code will be
Response.Write “<call command=”“attachFooter”">"
Response.Write “” & sample& “text-align:right,text-align:right”
I guess since sample contains two values text-align:right is given two times. But my sample value will be dynamic and it will vary. So then how can I use text-align:right
for i=1 to index
sample=“sample” & “,”& 120
next
Response.Write “<call command=”“attachFooter”">"
Response.Write “” & sample& “”
Response.Write “”
You can build the necessary string same as you building the sample string, but use necessary column aligns instead of column labels
Thanks for the suggestion. It worked.