/ Published in: C#
Expand |
Embed | Plain Text
rdp.Attributes["id"] = "rdp"; rdp.Attributes["name"] = "rdp"; rdp.Attributes.Add("classid", "clsid:7584c670-2274-4efb-b00b-d6aaba6d3850"); rdp.Attributes["runat"] = "server"; rdp.Attributes["width"] = "1034"; rdp.Attributes["height"] = "778"; Page.Controls.Add(rdp); string rdpConnect = "function Button1_onclick()" + "{" + "rdp.Width=1034;" + "rdp.Height=778;" + "rdp.DesktopWidth=1024;" + "rdp.DesktopHeight=768;" + "rdp.Server=text1.value;" + "rdp.Connect();" + "}"; string rdpDisconnect = " function disconnect()" + "{" + "rdp.Disconnect();" + "}"; rdpFunctions.InnerHtml = rdpConnect; rdpFunctions.InnerHtml = rdpFunctions.InnerHtml + rdpDisconnect; Page.Controls.Add(rdpFunctions);
You need to login to post a comment.
