Search results for query: *

  1. C

    URL Parameters or Session variables?

    What is recommended when using many variables that contain information that could be considered a privacy problem if captured? Are URL parameters fine to use and just use the Request.QueryString("variablename") or should I use session variables even though they can time out? This is with...
  2. C

    Changing contents the TextBoxes simultanously

    You could do the following but replace the ctl.Text = "" with the time that you are using. For Each ctl As Control In Controls If TypeOf ctl Is TextBox Then ctl.Text = "" End If Next Cleako
Back
Top