How to put Applet code in aspx page?

  • Thread starter Thread starter Amil
  • Start date Start date
A

Amil

What's the best way to place a Java Applet into an aspx page. I use
code-behind and pretty much use all .net controls to insert stuff. I
figured
I could use a LiteralControl object, but didn't know if there was a better
way.

Amil
 
That sounds like a good use for a Literal.

You could also use Page.RegisterClientScriptBlock()
 
Back
Top