Closed mroavi closed 8 years ago
Fragment of original HTML file: #center { padding: 10px 20px; width: 100%; }
#center { padding: 10px 20px; width: 100%; }
Response from the server: #center { padding: 10px 20px; width: 100 '# ; }
#center { padding: 10px 20px; width: 100 '# ; }
The consequence is that the whole webpage is incorrectly displayed.
You probably using template processing CGI routine (cgiEspFsTemplate). In this case you must "escape" percent symbol - write %%
That worked. Thanks.
Fragment of original HTML file:
#center { padding: 10px 20px; width: 100%; }
Response from the server:
#center { padding: 10px 20px; width: 100 '# ; }
The consequence is that the whole webpage is incorrectly displayed.