Displaying ads
-
Hey Guys, Has anybody implemented banners\ads in an application before? How would you recommend accomplishing this? What is the accepted industry standard of feeding ads into a program?
mjmim wrote:
Has anybody implemented banners\ads in an application before? How would you recommend accomplishing this?
Much of the how might be dependent on the requirements.
mjmim wrote:
What is the accepted industry standard of feeding ads into a program?
Not sure what you mean. If you are asking about a client/server model then the most prevalent solution today is probably Web Services.
led mike
-
mjmim wrote:
Has anybody implemented banners\ads in an application before? How would you recommend accomplishing this?
Much of the how might be dependent on the requirements.
mjmim wrote:
What is the accepted industry standard of feeding ads into a program?
Not sure what you mean. If you are asking about a client/server model then the most prevalent solution today is probably Web Services.
led mike
Requirements - I am writing a c#.net application that needs to desplay banners in parts of the screen. That is the basic idea. It's hard for me to say what the technical requirement is. If I attach to a web service from a desktop application what technology would I use to display a banner?
-
Requirements - I am writing a c#.net application that needs to desplay banners in parts of the screen. That is the basic idea. It's hard for me to say what the technical requirement is. If I attach to a web service from a desktop application what technology would I use to display a banner?
-
Requirements - I am writing a c#.net application that needs to desplay banners in parts of the screen. That is the basic idea. It's hard for me to say what the technical requirement is. If I attach to a web service from a desktop application what technology would I use to display a banner?
-
Displaying a banner depends on the definition of "banner". For example if it's a bitmap image then just drawing it or using a control like a PictureBox will work.
led mike
The truth is that you guys are right.... The basic idea should be to connect to a web service that shoves either pictures\animated gifs or flash clips to play at certain intervals and the application presents the data... Pictures and animated gifs should be no problem... what about more complicated banners (flash clips) - how are those "normally" played in c# .net applications.
-
The truth is that you guys are right.... The basic idea should be to connect to a web service that shoves either pictures\animated gifs or flash clips to play at certain intervals and the application presents the data... Pictures and animated gifs should be no problem... what about more complicated banners (flash clips) - how are those "normally" played in c# .net applications.
The WebBrowser control with Flash Player installed.
Eslam Afifi