Fill in textboxes programatically in ASPX

G

Guest

Thank you in advance for any and all assistance, it is GREATLY appreciated.

I'm trying to programatically fill in textboxes in an aspx page from vb.net
2005 using the Shell command to call the webpage. I would like to know if
there is a way to programmatically hard code textbox information, like
UserName and Password to a specific website. If so, can someone give me some
code sample of how to use the Shell function?


--
Michael Bragg, President
eSolTec, Inc.
a 501(C)(3) organization
MS Authorized MAR
looking for used laptops for developmentally disabled.
 
W

Walter Wang [MSFT]

Hi,

You may call Shell() with AppWinStyle.NormalFocus to focus the opened
browser window, then use SendKey to simulate your input.

For example:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim procID As Integer
procID = Shell("""c:\program files\internet explorer\iexplore.exe""
""http://www.hotmail.com""", AppWinStyle.NormalFocus)
System.Threading.Thread.Sleep(3000)
System.Windows.Forms.SendKeys.Send("someone")
System.Windows.Forms.SendKeys.Send("{TAB}")
System.Windows.Forms.SendKeys.Send("password")
End Sub

I hope this helps. Please feel free to post here if anything is unclear.

Sincerely,
Walter Wang ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 
G

Guest

Walter,

Thank you. With a little modification I have the fields filled in, now I'm
needing the code to programmatically send the {ENTER} key to the website.


--
Michael Bragg, President
eSolTec, Inc.
a 501(C)(3) organization
MS Authorized MAR
looking for used laptops for developmentally disabled.
 
W

Walter Wang [MSFT]

Hi Michael,

Thank you for your quick update.

I suppose what you needed is a call to:

System.Windows.Forms.Sendkeys.Send("{ENTER}")



Regards,
Walter Wang ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

SPAM 1
bypass security in Outlook 3
LAN IP 8
Test Post 2
Check for .NET Installed 11
Check for .NET Framework 2
validate email address in input textbox 1
Pause and Stop Search 2

Top