run an .exe file onload in VB.NET codebehind -


i have song data (title , artist) display on web page. display info on twitter account , have found great twitter .exe file tweet ever want twitter account. how run .exe file code behind page execute twt.exe file?

you use process.start method:

process.start("c:\somepath\twt.exe") 

and if wanted pass arguments:

process.start("c:\somepath\twt.exe", "arg1 arg2 arg3 ...") 

or better, take @ twitter oauth developer page , directly use public api.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -