|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Fill in textboxes programatically in ASPXThank 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. 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 (waw***@online.microsoft.com, 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. 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. -- Show quoteHide quoteMichael Bragg, President eSolTec, Inc. a 501(C)(3) organization MS Authorized MAR looking for used laptops for developmentally disabled. "Walter Wang [MSFT]" wrote: > 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 (waw***@online.microsoft.com, 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. > > 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 (waw***@online.microsoft.com, 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.
SQL parameter: what is wrong here?
WebRequest.Create Exporting a vb.net datagrid to excel Formatting text w/VB.NET Abstraction question Calling a VB.NET-DLL FROM VB6 drawing a rectangle in a form VB.NET Progress Bar - Recursive Search DataGridView visible columns Access of shared member, constant member, enum member or nested type through an instance |
|||||||||||||||||||||||