track&price 0 Newbie Poster

Hi Everyone
Just joined. New to vbnet

I am racking my brains to no avail. It seems simple enough. I want to put user / password values on a login page.

At this point I am not submitting the page. I just want to see that I see the values I want on the web page.

thanks
sandy

my code is:

WB1.Document.All("Email_Address").SetAttribute("Value", "sge")
WB1.Document.All("Password").SetAttribute("Value", "1234")
<div>
						<label for="Email_Address">Username:</label>
						<input type="text" name="Email_Address" value="" class="input" />
					</div>
 
					<div>
						<label for="Password">Password:</label>
						<input type="password" name="Password" value="" class="input" />
					</div>