S Steve Westwood Oct 17, 2003 #1 Using the VS dotNet C# environment how do I control or pass data from a webForm object and an html object? Thank you Steve
Using the VS dotNet C# environment how do I control or pass data from a webForm object and an html object? Thank you Steve
W William Ryan Oct 17, 2003 #2 Depends where you are passing them too. Typically you'd store it in Session objects . So if you wanted someVariable to = "Hello" and you wanted to see it everywhere..... Session.Add("someVariable", "Hello"); Then you can just extract it with WhateverString = l.IPAddress = (string) Session["someVariable"];
Depends where you are passing them too. Typically you'd store it in Session objects . So if you wanted someVariable to = "Hello" and you wanted to see it everywhere..... Session.Add("someVariable", "Hello"); Then you can just extract it with WhateverString = l.IPAddress = (string) Session["someVariable"];