function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
bssantoshbssantosh 

Uploading .NET Controls

I have made a sForce control in C# using the .NET API.
How do I upload this control on my client's developer site?
 
It seems that only Javascript / Html Code can be uploaded(copied and pasted).
Gareth DaviesGareth Davies
If you have ASP.NET you can host that and do a composite mash-up. Or you can ship as a win 32 app.
SuperfellSuperfell
You'd upload it as the binary file section of an S-Control.
bssantoshbssantosh
Can u elaborate a bit more on binary file section of an S-Control? Where would i find this section. I have created a usercontrol in asp.net with c# as code behind. How can i upload such a control?
DevAngelDevAngel
It's going to be very difficult to discuss this if you haven't explored the salesforce.com application and it's capabilities.

fowlermfowlerm
It is not possible to execute ASP.NET server controls as an SControl.  You can however, have a C# Windows Forms control that IE will host on the client (similar to the way ActiveX works).

In this case you would upload the .NET DLL as the SControl's binary file, and then the HTML would have an object tag that will tell IE how to load the control.  Also, this only works in IE.