| Aspect | Farm | Sandbox |
|---|---|---|
| Deployment process | Add the solution, and then deploy it to the farm. | Upload the solution to a site collection, and then activate it in the site collection. |
| Who can deploy | Farm administrator. | If the solution contains an assembly, only a site collection administrator can deploy it. If the solution does not contain an assembly, a user who has full control at the root of the site collection can deploy it. |
| Data access | Unrestricted. | The solution can only access content from the site collection in which it was deployed. |
| Process the solution runs in | Unrestricted IIS worker process, or whichever process the solution is deployed into. | Separate worker process that has restricted rights. |
| Code access security | The solution developer can set the code access security policy when packaging the solution. | Restricted. For more information, see Deploying a sandboxed solution |
| Monitoring | Not monitored. | Monitored, and limited by quotas set by the farm administrator. |
| Load balancing | Varies, based on the kind of solution. | Configurable separately from non-sandboxed solutions. |
| Solution functionality | Unrestricted. | Restricted, as described in What a sandboxed solution cannot contain. |
Scenerio: I need your help in designing tab control in asp.net .My requirement is I need a tab control in asp.net (C#) like for example goto my computer ,right click c drive and select properties.we get tabs like general,security etc....... like that i need to design one tab control(no need of any rightclick) in my web page and the database table columns should come as tabs and inseide the tab data of that particular column should come. Example:Employee master tab1:Employee name.........his name in the tab tab2:Age.............his age tab3:Address........his address Solution: You can do this using a simple div <style type="text/css"> .tabs { position: relative; height: 20px; margin: 0; ...
Comments
Post a Comment