I have my query string down, and have verified that all values are being passed as they should be. Even if you look in the address bar it shows the appropriate values, but they are not being written to the page itself.
string pagetoload = "www.nonono12323hamarabi2323.html";
string bld = "FranklinJonesSmith";
Response.Redirect(pagetoload+"?BuildingName="+bld);
And this is the html for the field buildingname
<div style="width: 10px;"></div>
<input id="BuildingName" name="BuildingName" maxlength="255" type="text" style="width:240px;">
EDIT
and if I look in the address bar when the page loads it shows the correct value that I am trying to pass. The address bar reads:
www.nonono12323hamarabi2323.html?BuildingName=FranklinJonesSmith
EDIT 2
Thanks to @RJ Cuthbertson I now have a better understanding and realize that simplay passing the querystring to the page does not populate the textboxes themselves.
I am using webforms and am launching an order page using Response.Redirect
so I do not have a way of accessing the C# Page_Load Event to do something like
BuildingName.Text=Request.QueryString["bld"];
So am I safe to say I need to research the JavaScrip methods mentioned below?