laying out a form using c# for a webpart in sharepoint - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T05:05:57Zhttp://stackoverflow.com/feeds/question/606626http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/606626/laying-out-a-form-using-c-for-a-webpart-in-sharepoint4laying out a form using c# for a webpart in sharepointraklos2009-03-03T14:39:14Z2009-03-06T00:22:08Z
<p>I have created a webpart in c# for sharepoint.
its basically a form with text boxes, literals, validators and buttons.</p>
<p>im not sure how to render this form to make it look pretty.
The layout etc is being done entirely within this c# class.</p>
<p>At the moment to get started im just overrinding <code>CreateChildControls()</code> method
and adding each form control using something like: <code>this.Controls.Add(submitButton);</code></p>
<p>any ideas on how best to layout this form?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/606626/laying-out-a-form-using-c-for-a-webpart-in-sharepoint/606654#6066541Answer by Nathan DeWitt for laying out a form using c# for a webpart in sharepointNathan DeWitt2009-03-03T14:45:58Z2009-03-03T14:45:58Z<p>I would recommend grabbing the source from an existing sharepoint page and using the styles defined by sharepoint. <a href="http://www.sharepointcustomization.com/resources/tipstricks/wss%5Fcssguide.htm" rel="nofollow">This link to the styles in 2003</a> is old, but still a good guide to get started. Most of the CSS class names haven't changed.</p>
http://stackoverflow.com/questions/606626/laying-out-a-form-using-c-for-a-webpart-in-sharepoint/606667#6066670Answer by brianng for laying out a form using c# for a webpart in sharepointbrianng2009-03-03T14:49:35Z2009-03-03T14:49:35Z<p>In my web parts I include css files in the solution and inject them in the page using something like:</p>
<pre><code>this.Page.Header.RegisterCss("/_layouts/path/to/css/file.css", false);
</code></pre>
http://stackoverflow.com/questions/606626/laying-out-a-form-using-c-for-a-webpart-in-sharepoint/606869#6068690Answer by Two Bears for laying out a form using c# for a webpart in sharepointTwo Bears2009-03-03T15:36:00Z2009-03-03T15:36:00Z<p>You can override the RenderContents(...) method to manually render the HTML in anyway you want to. This includes adding any css includes, scripting includes, etc. that you want/use. </p>
<p>You can render your child controls to strings and then output them as well, but you probably should NOT call the base.RenderContents(...) method. </p>
<p>Just make sure you don't forget to render your child controls.</p>
http://stackoverflow.com/questions/606626/laying-out-a-form-using-c-for-a-webpart-in-sharepoint/607213#6072130Answer by Alex Angas for laying out a form using c# for a webpart in sharepointAlex Angas2009-03-03T16:52:50Z2009-03-03T16:52:50Z<p>If it's important for you to see as you design, use the <a href="http://www.codeplex.com/smartpart" rel="nofollow">SmartPart</a> which embeds a user control in a web part. (In case you didn't know, user controls can be designed using the tools within Visual Studio.)</p>
<p>If you prefer to hand-code, then you're on the right track. Simply create and set initial properties for your controls within the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.createchildcontrols.aspx" rel="nofollow">CreateChildControls()</a> method and use <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.controlcollection.add.aspx" rel="nofollow">this.Controls.Add()</a> as you have been.</p>
<p>In both cases, where possible use the CssClass property so you can tinker with the look and feel in a CSS file without having to recompile. You <em>could</em> hard-code the CSS class names but it would be better to use the web part properties or an external config source to store these. Have a reference to the CSS file in your master page or inject it into the page using the other techniques mentioned in this answer.</p>
<p>The MSDN articles <a href="http://msdn.microsoft.com/en-us/library/ms476318.aspx" rel="nofollow">Web Parts in Windows SharePoint Services</a> or <a href="http://msdn.microsoft.com/en-us/library/ms415817.aspx" rel="nofollow">Creating a Basic Web Part</a> might also help.</p>
http://stackoverflow.com/questions/606626/laying-out-a-form-using-c-for-a-webpart-in-sharepoint/617288#6172883Answer by Thomas Favrbo for laying out a form using c# for a webpart in sharepointThomas Favrbo2009-03-06T00:22:08Z2009-03-06T00:22:08Z<p>When creating custom webparts I also prefer to implement them by overriding the <strong>CreateChildControls()</strong> and <strong>Render()</strong> methods. In the <strong>Render()</strong> method I have full control of the html output and I can render my inner controls by calling <strong>this.someInnerControl.RenderControl(writer)</strong>.</p>
<p>Having full control of the html output also makes it easy to style the html using CSS. As other people suggests, use an external CSS file and apply the styes to the <em>class</em> attribute on html elements or <em>CssClass</em> property on ASP.NET web control.</p>
<p>When I implement webparts, that does not require special branding, I prefer to reuse the CSS classes defined by SharePoint. This will ensure that my webpart is visually similar to the webpart provided by SharePoint and that I keep a consistent look and feel.</p>
<p>When using the SharePoint defined CSS styles, you should be aware of your html output. Some of the CSS classes requires a specific html structure to properly render. You can always use the browsers "View Source" to check the html of the SharePoint element you are trying to imitate.</p>