1.

Solve : Quick Help (semi-complicated??)?

Answer»

I want to make a batch file where you type in a username and password and enter it and it opens a LINK and submits it then runs a java command within that page. I have previous knowledge in batch programming, but I wouldnt know how to do this. (using windows XP)

Link to SUBMIT info to: http://gunbound.ijji.com/index.nhn
java command to execute after login: javascript:goPlay('u_gbound', '');It's unclear what you want to do. A batch file could prompt for a username and password and if correct launch the website. Batch CODE cannot pass the username and password to fill in fields on the WEB page much less CLICK a button.

You would need a scripting language that can create an instance of the browser, navigate to the web page, fill in the name and password fields and click on the sign in button. This is not particularly hard to do, but you would need the source listing of the page to get the names of the userid and password fields and the name of the sign in button.

I would suggest VBScript because it's already installed on your machine, but any Windows scripting language should be able to do this.



ok thanks



Discussion

No Comment Found