| Author: Shivshanker Cheral 02 Nov 2009 | Member Level: Diamond | Rating:  Points: 2 |
3) what is a List definition..how could you create a custom list definition?
refer : http://msdn.microsoft.com/en-us/library/ms466023.aspx
6) how to create a asp.net Custom control and use it in sharepoint?
Sample code for custom control asp.net and Vb
<%@ Page Language=VB Debug=true %> <%@ Register TagPrefix="My" TagName="SimpleControl" Src="UserControlControls.ascx" %> <HTML> <HEAD> <TITLE>Implementing a User Control on an ASP.NET Page</TITLE> </HEAD> <BODY LEFTMARGIN="40"> <form runat="server" id="MyForm" > <BR><BR> <My:SimpleControl id="MSC1" runat="server" /> </form> </BODY> </HTML>
<%--UserControlControls.ascx <Table style="font: 10pt verdana;border-width:1; border-style:solid;border-color:black;" cellspacing="15"> <TR> <TD> <asp:Label id="lbl1" runat="server" Font-Bold="True" Text="User Name: " /> </TD> <TD> <asp:TextBox id="txtUserName" runat=server /> </TD> </TR> <TR> <TD> <asp:Label id="lbl2" runat="server" Font-Bold="True" Text="Password: " /> </TD> <TD> <asp:TextBox id="txtPassword" runat=server TextMode="Password" /> </TD> </TR> </Table>
--%>
|
| Author: Shivshanker Cheral 02 Nov 2009 | Member Level: Diamond | Rating:  Points: 2 |
1) What is work flow and name the out of the box share point work flows? refer : http://msdn.microsoft.com/en-us/library/cc748597.aspx
5)SPTHEME.xml? refer: http://blogs.msdn.com/ketaanhs/archive/2009/07/01/modifying-spthemes-xml-programmatically-to-deploy-new-themes-moss-2007-wss-3-0.aspx
|
| Author: Munni 02 Nov 2009 | Member Level: Silver | Rating:  Points: 2 |
Thanks ShivShanker!!
|
| Author: Pradeep Kumar 13 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
2) You can create SiteDefinition using Solution Generator. http://msdn.microsoft.com/en-us/library/bb802774.aspx
7) The SharePoint Solution Generator is a stand-alone application that can convert site into a Visual Studio 2005 site definition project that can be compiled into a SharePoint solution.
http://weblogs.asp.net/soever/archive/2006/11/11/SharePoint-Solution-Generator-_2D00_-part-1_3A00_-create-a-site-definition-from-an-existing-site.aspx
|