I want to retrieve data from a view, it should work like this:
- User fill a form available on the webpage
 - User clicks SEARCH button
 - Some function(s) collect the data and display them in another view
 
I tried all the basic tutorials and tips on others stackoverflow question but it still doesn't work. I don't know what I'm doing wrong...
Here's my code from the view:
section id="roomSearch">
<div class="banner">
    <div class="banner-info">
        <div class="container">
            <div class="details-1">
                @using (Html.BeginForm("UploadRoomSearchData", "HomeController", FormMethod.Post, new { enctype = "multipart/form-data" }))
                {
                <div class="col-md-10 dropdown-buttons">
                    <div class="col-md-3 dropdown-button">
                            @Html.AntiForgeryToken()
                            <div class="input-group">
                                @Html.TextBoxFor(m => m.YourName, new { @class = "form-control has-dark-background", @placeholder = "Imię" })
                                @Html.ValidationMessageFor(m => m.YourName, "", new { @class = "text-danger" })
                                <!--<input class="form-control has-dark-background"
                name="slider-name" id="slider-name" placeholder="Imię" type="text" required="">-->
                            </div>
                    </div>
                    <!---strat-date-piker---->
                            <link rel="stylesheet" href="~/Content/jquery-ui.css" />
                            <script src="~/Scripts/jquery-ui.js"></script>
                            <script>
                                $(function () {
                                    $("#datepicker,#datepicker1").datepicker();
                                });
                            </script>
                    <!---/End-date-piker---->
                            <div class="col-md-3 dropdown-button">
                                <div class="book_date">
                                    <form>
                                        <input class="date" id="datepicker" type="text" value="Przyjazd" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Przyjazd';}">
                                       <!-- @Html.TextBoxFor(m => m.CheckIn, new { @class = "date" })
                                        @Html.ValidationMessageFor(m => m.CheckIn, "", new { @class = "datefield" })-->
                                            </form>
                                </div>
                            </div>
                            <div class="col-md-3 dropdown-button">
                                <div class="book_date">
                                    <form>
                                     <input class="date1" id="datepicker1" type="text" value="Wyjazd" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Wyjazd';}">
                                        <!--@Html.TextBoxFor(m => m.CheckOut, new { @class = "date1" })
                                        @Html.ValidationMessageFor(m => m.CheckOut, "", new { @class = "datefield" })-->
                                            </form>
                                </div>
                            </div>
                            <div class="col-md-3 dropdown-button">
                                <div class="section_1">
                                    <select id="country" onchange="change_country(this.value)" class="frm-field required">
                                        <option value="null">Dwuosobowy</option>
                                        <option value="null">Jednoosobowy</option>
                                        <option value="AX">Apartament</option>
                                        <option value="AX">Gościnny</option>
                                    </select>
                                </div>
                            </div>
                            <div class="clearfix"> </div>
                        </div>
                            <div class="col-md-2 submit_button">
                                <form  >
                                    <input type="submit"  value="SZUKAJ">
                                 <!-- <p> @Html.ActionLink("SZUKAJ", "Book1", "Home")</p>-->
                                </form>
                </div>}
And here's my code in the controller. For now I try to retrieve only a name, to see if it's working.
[HttpPost]
    public ActionResult UploadRoomSearchData(FormCollection form)
    {
        string name = Request["YourName"].ToString();
        StringBuilder sbRoom = new StringBuilder();
        sbRoom.Append("<b>Amount :</b> " + name + "<br/>");
        //return RedirectToAction("Book1");
        return Content(sbRoom.ToString());
    }
I also tried something like this:
foreach(var v in form)
{
    Write.Response("name:" + v);
 }