看板 C_Sharp 關於我們 聯絡資訊
看起來用 C# 寫程式的人好像也並不多呢, 其實 Applet 也可以用 C# 來寫唷! 但是似乎目前只能用 IE 來開啟... -- Here is an example: <!-- test.html--> <html> <body> <object classid="http:test.dll#test" width="200" height="150"> </object> </body> </html> // test.cs // csc /target:library test.cs using System; using System.Drawing; using System.Windows.Forms; public class test : Control { override protected void OnPaint(PaintEventArgs e) { Graphics g = e.Graphics; g.DrawEllipse(Pens.Red, ClientRectangle); } } -- ※ 發信站: 批踢踢實業坊(ptt.csie.ntu.edu.tw) ◆ From: 211.23.228.106
popcorny:試不出來...我有擺在iis上唷.... 推 61.224.97.29 02/09
Action:有 compile 嗎? .dll 是不是放同一個目錄? 推 211.23.228.106 02/10