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
Post a Comment