Hello
I have a field on my form, which I'd like to parse before sending to a Web server. Is it possible by using C functions provided by the web server?
I mean, suppose I have parse_field() function written in C, and the web server knows it and can call, so I do something like <% parse_field() %> on the page, the function shouls take the current contents of the field as an argument and return some parsed value, which will be POSTed to the server.
Is it possible, or not by all means? Or it is better to do with JavaScripts function (but I'm not very good with JS though :( )? Thanks !