Get Textbox Value in New Page in Sitecore MVC

598 Views Asked by At

I am using Sitecore 7.1. I created one search page and created a textbox by using the Web Form For marketer in it. On button click I want catch the text box value in a new page name search-result. How can I catch the WFFFM text box value in New page? I Don't want use JavaScript click event and query string.

<form class="search-form" action="/searchresults" method='get' > 
    <label><input type="text" name="searchText" id="searchText" placeholder="@placeholderText"></label> 
    <input type="submit" name="submit" value="" class="@cssClass"> 
</form>

But i am getting below type of URL http://www.xyz/searchresults?searchText=searchTextHere&submit=

1

There are 1 best solutions below

0
On

Can you capture the "onsubmit" event and update the URL to whatever you need using Javascript? You only said not to use onclick event. I'm assuming that you may want to have /searchresults/ as a result. Of course, I assume that your routes are set for this and searchresults can process this correctly.