I've created a web application in asp.net. I've to generate embed code for one of my page so that other websites can embed that code in their websites. Tell me what is the best way to do this?

link|improve this question

78% accept rate
Question is entirely too vague. What do you mean by "embed code?" No idea what you are after here. – Bryan Mar 17 '10 at 6:05
feedback

2 Answers

up vote 2 down vote accepted

You can try IFRAME or a javascript depending on what you want to do. An example is right here in stackoverflow.

link|improve this answer
nice one....... – Muhammad Akhtar Mar 17 '10 at 8:57
feedback

You can provide code for an iframe that contains your page, which usually isn't so great. Or you can provide a little snippet of javascript that will then write your content into the page, which in most cases is better. If you really don't want anyone to mess with the code, use the iframe though since javascript can't really access your code inside of an iframe to make changes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.