Click here to Skip to main content
15,886,751 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
how to pass data from kendo window(PartialView page) to another view page?


SharedView Page:

@(Html.Kendo().Window()
.Name("kendoWindow")
.Title("About IMS Project")
.Content(@<text>


@(Html.Kendo().TextBox()
.Name("fName")
.HtmlAttributes(new { placeholder = "text", required = "required", validationmessage="Enter First Name" })
)
@(Html.Kendo().Button()
.Name("btnsubmit")
.Content("Submit")
.Events(ev => ev.Click("onClose"))
.HtmlAttributes(new { type = "button", @style = "box-shadow: 4px 4px 4px rgba(0,0,0, .65); width: 100px; ", @class = "k-button" })
)


)


.Draggable()
//.Resizable()
.Width(900)
.Height(584)
)


How to pass this textbox value to another view page...?
Posted
Updated 26-Nov-15 3:10am
v2
Comments
Krunal Rohit 26-Nov-15 8:55am    
Not a question.

-KR
Sathish km 26-Nov-15 9:11am    
i have updated my qtn...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900