How to display "create Site" command link in the web part?
Hi, I need help to know that how can I display the "create Site" link in the webpart rather in the site Actions? ...
Hi, I need help to know that how can I display the "create Site" link in the webpart rather in the site Actions? ...
hi, Help plz! How can I make a webpart that has a button called "Create Site" and it programatically create a site (using my own custom template e.g. Mytemplate.STP) ? The reason is of such task is, I dont want user to go into "Sites Action" -> create Site -> and then fill the whole form. I want to give a user an easy interface with...
I want to develop a public website on SharePoint server 2007. But, I want to develop a solution using Visual Studio 2008 (I dont want to use SharePoint designer 2007). ...
I am just getting into Sharepoint, and I have a question about having a Sharepoint internet site, and a Sharepoint intranet site. Is it possible to have an internet site, and have a login type function, that when the user logs in, they are taken to a site like the Team Site? I think I'm trying to integrate an internet/public site with th...
I want to upload upload up to 100 MB to 1GB file onto sharepoint using Web Services ( C#). Which can only possible by passing file data into chunks. Regards, Jene ...
I am making one module in my project to avail search in Sharepoint. I am using web Services (C#). ...
Hi all, I have this problem when clicking a link that was displayed on the search results, when I click the link it says link not found. Here is the scenario. We have calendar in SharePoint, sample link is "http://ecm/Lists/Calendar" In the calendar, there is an entry with "W2" word in it. In the search, we enter W2 as keyword and belo...
I'm building my first public site in Sharepoint, using Designer. Is it possible to have the site have the URL be: http://. without any directory structure after the extension. It seems so far it puts the directory structure after it always. ...
I am using web services to access SharePoint list,sites and documents. Like: List.asmx,Site.asmx e.t.c. My question is that: Do we need to disconnect from SharePoint when using above services? And if yes then How? Example: GetSiteCollection(String login, String password, String url) { Webs ws = new Webs(); try { w...
I have a requirement that i need to implement custom authentication in sharepoint and the login credentials should be EmailAddress & Password. once i given this it should check the details in my own sql server database instead of SharePoint database. And based on that it should allow the user to see authenticated page. Its a public site ...
I am responding to events that occur (like adding an item to a list) in SharePoint. I would like the ability to query AD with the triggering user ID and get back some specific information such as Department, Phone Number, Title and so on which isn't included in the SPUser information. Is there a built in way to do this? What is the best ...
Is there a solution to the following that I am missing in SharePoint/CAML. Note that I'll give a specific example of using a URL on a Redirect Page (publishing feature content type), but the issue is broader in scope than provisioning a Redirect Page. It is really a question anywhere a "URL" field/property can be set (web parts, pages,...
When we add a new user to the SharePoint 2007 group, an email with welcome message is generated by SharePoint. Is there any way to customize message and brand this message?. I know how to cusotmize/brand alert emails (when user subscribes for items in list/library) my modifying AlertTemplates.xml under 12 hive. ButI did not find a way to...
I made a test site after initial installation of Sharepoint 2007. Is it possible for Designer to "hook into" Sharepoint and bring up the single page that is the site that I made? Or, does the designer need to first make the page(s) then hook into the server? ...
I set up a test Sharepoint 2007 Server before I set up a test AD Server to add it to. Based on what I read I did this backwards and if I would have set it up the other way around Sharepoint would use AD by default. Is there a way I can change the configuration so this Sharepoint server will authenticate against the domain? I did some ...
Is it possible using code to get all the names of the sites in SharePoint? Specifically, is it possible to list all the names of the lists for each site, and list all the users and their access to the lists? ...
Hi all I am searching a SharePoint Server 2007 Webpart which can do following * change password * lost password recovery (e-mail) * change password reminder (e-mail) I have been searching the Internet but somehow there aint as many webparts as for example WordPress Addons. When I am lucky I can find individuals which made an Webpart ...
Hello, I'm using DataFormWebPart to display all announcements in the SharePoint site collections. It uses SPDataSouce with DataSourceMode set to CrossList and it works OK. The text of the announcement comes from the XML attribute: <xsl:value-of disable-output-escaping="yes" select="@Body" /> Now I need to limit this text to, say, 250...
Hi all: Currently I'm having trouble adding custom/my own css files to my SharePoint site. I add the custom/my own css files via the c# files (CssLink) as a web part and have them applied to my site's javascript files. Trouble is, whenever the css files were applied, my site goes back to the default blue-ish SharePoint theme color. I...
I have an SPList item in sharepoint and I want to find out the size on disk of the list. Is it possible without going through each item in the list and trying to find out the size? Update Below is the code I think I can use if I do need to get each item: long listSize = 0; foreach (SPListItem item in list.Items) ...