Hi,
How to sent value from textbox to another textbox in differen view .Net Core Mvc
I tried to get value on textbox and then send that value to another textbox in differen view. How to do that ? Any help could be appriciate.
The scanario is like this :
1. I have name view as view 1 inside the view 1 I have textbox
<input type="text" id="parameter1" name="parameter1" class="form-control">
2. And then I have name view as view 2 inside the view 2 I have textbox
<input type="text" id="parameter1" name="parameter1" class="form-control"> with the same name but placed on differen view.
I want is when action in view 1 doing, the value on textbox in view 1 will sent to destination form in view 2 and populate to textbox in view 2.