I have master template with form having search input field and button field. On clicking the button it opens search page to which fulltextsearch template is applied which is having fulltextsearch macro.
in this macro I want to access search input field to set its value from querystring parameter. How can I do that?
fulltextsearch xslt and form field
I have master template with form having search input field and button field. On clicking the button it opens search page to which fulltextsearch template is applied which is having fulltextsearch macro.
in this macro I want to access search input field to set its value from querystring parameter. How can I do that?
So you want to grab the value from a query string and use it as the value in the input field?
Then try something like this:
I hope hat I've understod your question the right way :)
/Kim A
yes... u understood it right... but it shows {umbraco.library:Request('Search')} only in input field. The form is in template.
Ahh the form is in a template and not a XSLT-file. Sorry dude, then my solution doesn't work as you said :(
My bad. I'll return if I find the solution to your problem.
/Kim A
yes form is outside of xslt in template. will be waiting for solution.
A template is just a .NET page file, so shouldn't you just be able to do somethign like:
yes.. thanx a lot... it works...
is working on a reply...