sending the value of a parameter in a form to another form smart device
-
Hi; i am working on a mobile application with csharp. I want to know how can i use a parameter related to a form in another form. what can i do. thank you for your help.
-
Hi; i am working on a mobile application with csharp. I want to know how can i use a parameter related to a form in another form. what can i do. thank you for your help.
If it is web application Use Query String Ex Reponse.Redirect("SecondPage.aspx?Param="+Param); If it is windows application add module and declare a varible in it assign a value and retrieve it in another page I hope it ll help u :)
-
If it is web application Use Query String Ex Reponse.Redirect("SecondPage.aspx?Param="+Param); If it is windows application add module and declare a varible in it assign a value and retrieve it in another page I hope it ll help u :)
thank you for your help, But i am working on a mobile application and it is not a web application. I found finallay the solution for the problem. It was very simple: add a parameter to the constructor of the form and call it with this parameter.