active questions tagged webpart - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T04:26:35Zhttp://stackoverflow.com/feeds/tag/webparthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/322280/getting-the-web-capture-web-part-to-work-were-the-sharepoint-is-64bit1Getting the Web Capture Web Part to work were the Sharepoint is 64bitSyberz2008-11-26T21:46:53Z2009-12-17T00:00:03Z
<p>Previously our Sharepoint server was 32bit and we used the web capture web part to display a bugzilla search results page. Since we've migrated to a 64bit server the webpart no longer works. We're running the same versions of everything, the only change was moving from a Windows2003 32bit box to a Windows2003 64bit box.</p>
<p>Oddly enough, the logs don't contain anything. The pages where the webparts appear are the only place that error messages appear. Here is what I have:</p>
<p>-Web Part Error: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe.</p>
<ul>
<li>Error - An unexpected error has been encountered in this Web Part.</li>
</ul>
<p>The reason I suspect the 64bit vs 32bit issue is that I saw numerous posts on the subject in various forums. It would appear that I am not the only one with this issue and all the troubleshooting has lead to this conclusion.</p>
http://stackoverflow.com/questions/1908000/using-loadcontrol-in-a-sharepoint-webpart0Using LoadControl in a SharePoint webpartantik2009-12-15T14:56:58Z2009-12-15T14:56:58Z
<p>I'm building a SharePoint webpart that I'm trying to add to the DisplayForm.aspx page of a custom list in SharePoint. This webpart will be using the SharePoint object model to retrieve fields from my list items.</p>
<p>I've accomplished the addition of the webpart by adding an <code><AllUsersWebPart></code> block in the <code><Form></code> block for the DispForm and I'm able to load that webpart just fine. I'd like the webpart to call LoadControl and load an .ascx file containing my control's layout and the associated code behind.</p>
<p>All of this is deployed via a WSP into SharePoint. As such, I'd like all configuration to occur from my <code>manifest.xml</code> file. This has proven difficult for the following reasons.</p>
<p>I would prefer to deploy the webpart assembly to the web application's BIN. Starting down this approach, I've defined NamedPermissionSet in my <code>manifest.xml</code> <a href="http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2009/11/20/deploying-a-web-part-with-code-access-security-in-visual-studio-2010-sp2010.aspx" rel="nofollow">as described by Cory Roth</a> as follows:</p>
<pre><code><PermissionSet class="NamedPermissionSet" version="1" Description="Permission set for my webpart">
<IPermission class="AspNetHostingPermission" version="1" Level="Minimal" />
<IPermission class="SecurityPermission" version="1" Flags="Execution,ControlPrincipal,ControlAppDomain,ControlDomainPolicy,ControlEvidence,ControlThread" />
<IPermission class="Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" version="1" ObjectModel="True" />
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="UserName" />
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="$AppDir$" Write="$AppDir$" Append="$AppDir$" PathDiscovery="$AppDir$" />
</PermissionSet>
</code></pre>
<p>I then discovered that the above <a href="http://blogs.msdn.com/chandru/archive/2009/06/01/cas-in-sharepoint.aspx" rel="nofollow">is not sufficient for calling LoadControl</a> which really needs something closer to Full permission. Instead, I get a "Cannot find file: /path/to/my/control".</p>
<p>I can hack a fix here (and it works) by setting <code>Unrestricted="true"</code> in the <code>wss_custom_wss_minimaltrust.config</code> file in <code>%HIVE%\TEMPLATE\CONFIG</code> but this is not a solution I want to maintain nor am I convinced my production administrators would be pleased with the approach.</p>
<p>Fine: I'll deploy the webpart assembly to the GAC. That moves me further along, but it's not a complete fix. With my assembly in the GAC, SharePoint calls into my assembly (which is working because I can attach my debugger to the IIS process and it breaks before my LoadControl call as expected) and appears to to successfully find my control file and load it. However, it throws and exception and dies reporting "Could not load type 'WebPart.MyControlCodeBahindType'". The type exists in the same assembly in the GAC which SharePoint has already successfully called into just to load the webpart that calls LoadControl. .</p>
<p>Why might something that's in the GAC not be able to load? Remember: this all works if I elevate permissions in the above hack so I feel that's sufficient to demonstrate that the web part assembly does contain the class that my .ascx is looking for.</p>
<p>Is there a work around that I can adopt in my WSP that will allow me to set <code>Unrestricted="true"</code> as described in my hack above (or similar?)?</p>
http://stackoverflow.com/questions/1902977/sharepoint-web-part-rendering-according-to-user-selection0SharePoint Web Part: rendering according to user selectionGeo Ego2009-12-14T19:34:24Z2009-12-14T21:04:32Z
<p>I am writing a SharePoint web part that interacts with a SQL database, allowing users to set a few parameters with some dropdownlists and pull the record for a given customer.</p>
<p>I would like for one of three particular HTML tables to be displayed once the customer is selected. What I am confused about is how I can render HTML after the page has already ran RenderContents. Initially, I just need the ddls and a button to be displayed so that the user can make their selections, so I have put those in the RenderContents method. Once they click the button, I'd like to display one of three tables containing the data, which would be determined by the parameters they have set. I'm not sure how to begin writing such a method, although I'm sure it would involve HtmlTextWriter. This is pseudocode to represent what I need:</p>
<pre><code>protected override void RenderContents(System.Web.UI.HtmlTextWriter output)
{
... displays dropdownlists and button ...
renderMachineSpecifications();
}
void renderMachineSpecifications()
{
if (record returned according to ddls is in the range 1000-1999)
{
// Render table type A and fill with information from database
}
else if (record returned according to ddls is in the range 2000-2999)
{
// Render table type B and fill with information from database
}
else
{
// Output error message
}
}
</code></pre>
<p>Thanks very much!</p>
http://stackoverflow.com/questions/1880906/how-to-add-a-custom-web-part-to-a-webpart-page-through-code2How to add a custom web part to a webpart page through code?MNM2009-12-10T13:12:54Z2009-12-11T12:09:52Z
<p>I wanna how to add a custom web part to a webpart page through code? The custom web part is already deployed to the SharePoint site. It's a MOSS instance.</p>
http://stackoverflow.com/questions/1808245/how-can-i-customize-sharepoint-list-column-aggregation-total-calculations0How can I customize SharePoint list column aggregation (total) calculations?Matthew Murdoch2009-11-27T11:39:10Z2009-12-09T11:07:34Z
<p>I have a SharePoint list column of type 'Single line of text'. Out of the box SharePoint only provides the ability to display a 'Count' total for this column type. I would like to be able to perform a custom aggregation on the data (specifically to sum numeric data held as text to overcome <a href="http://stackoverflow.com/questions/1687651/should-i-use-sharepoint-number-column-types-to-store-monetary-values/1723917#1723917">this deficiency</a>).</p>
<p>I have found examples for doing something similar for calculated columns using <a href="http://community.bamboosolutions.com/blogs/bambooteamblog/archive/2009/04/24/how-to-total-calculated-columns-in-a-sharepoint-list.aspx" rel="nofollow">XSLT</a> and <a href="http://www.endusersharepoint.com/2009/01/06/jquery-for-everyone-total-calculated-columns/" rel="nofollow">Javascript</a> but I believe that both of these approaches fail where the data is paginated (only aggregating the subset of the list content displayed on screen).</p>
<p>I want to retain the functionality of the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webpartpages.listviewwebpart.aspx" rel="nofollow">ListViewWebPart</a> (rendering, sorting, filtering, view definition, action menus etc.) but add this functionality. How can I do this?</p>
http://stackoverflow.com/questions/1865969/sharepoint-webpart-include-additional-assembly-in-wsp-package0Sharepoint WebPart, include additional assembly in wsp packagedriAn2009-12-08T10:06:12Z2009-12-08T13:10:42Z
<p>Hi all</p>
<p>I created a utility library for my Sharepoint WebParts. Now when I reference this library from my WebPart project, it compiles fine, but the library is not included in the .wsp package. This means the library assembly is not deployed to the target system, causign the WebPart to fail.</p>
<p>Is there any way to fix this? I am using Visual Studio 08 & VseWSS 1.2. </p>
http://stackoverflow.com/questions/933813/why-can-sharepoint-not-save-the-properties-of-my-calendar-webpart0Why can SharePoint not save the properties of my calendar webpart?Geoffrey van Wyk2009-06-01T07:08:52Z2009-12-08T10:00:09Z
<p>I am linking the Calendar webpart on my My Site to my Outlook 2007 calendar.</p>
<p>The error message is:</p>
<blockquote>
<p>Cannot save the property settings for
this Web Part. Exception from HRESULT:
0x80040E14</p>
</blockquote>
<p>In design view in SharePoint, I can see some calendar items from Outlook, but it does not want to save it.</p>
http://stackoverflow.com/questions/1859849/sharepoint-intranet-portal1Sharepoint intranet portalMarceloRamires2009-12-07T13:05:09Z2009-12-07T21:51:31Z
<p>Migrating (rewriting) a whole portal originally made in .net to shareopoint doesn't seem like a very easy thing to do.
I've been assigned such task and now i'm just learning, planning and starting to get things practical in order to accomplish it faster.</p>
<p>It's not exactly a question, it should be a discussion about it and may help others who might get to do the same job further on.</p>
<p>1 - There's something like a "message board" in the current portal, which i'm planning on building with a blog site kind, what do you sugest?</p>
<p>2 - as asked in another question, i have to manage users, and the local active directory is organized and reliable, so i guess that's what i'm going to use</p>
<p>3 - There's got to be a way to store files, images, documents and having version controlling in some of them.</p>
<p>4 - There's got to be a customization in design and a cleaning in the default controls of sharepoint masterpage (which may be useless for the desired purposes)</p>
<p>5 - About 30 local users and being accessible from the internet (local server) in case our consultors have to access it from clients</p>
<p>6 - i have available a version of the Visual Studio 2010 (already with the graphical webpart designer) because the company i work is MS gold partner.</p>
<p>7 - I'm going to program webparts in c#, and the designing part is still a mistery to me, since i'm not that familiar to shareopint yet.</p>
<p>I'd like some tips, links and answers.. i'm going to be watching this question from now on and answering any other information.</p>
http://stackoverflow.com/questions/1426808/can-i-deploy-in-sharepoint-two-web-parts-with-the-same-dll-but-two-webpart-file0Can I deploy in SharePoint two Web Parts with the same DLL, but two .webpart files, at the same timeRambaldi2009-09-15T12:13:44Z2009-12-07T13:00:00Z
<p>Hello:</p>
<p>Is it possible to have two Web Parts with the same DLL, but two .webpart files, deployed in Sharepoint at the same time?</p>
<p><strong>Background</strong> :
I am developing an application that will generate a ".cab" file containing a Web Part (ASP.NET 2.0 Web Part). After that, the user should be able to deploy this ".cab" file in a in a SharePoint server.</p>
<p>My application already includes the DLL of a Web Part. The "behavior" of this Web Part depends on the properties of the ".webpart" file which will be generated at runtime by my application (its content will change depending on certain user choices)
After generating the ".webpart" file, it packages it to a ".cab" file along a Manifest.xml and the DLL.</p>
<p>Imagine that the user creates two "cab" files using my application. And he wants to deploy them into SharePoint.</p>
<p>To test this, I create this two ".cab" files with my app, and in SharePoint I execute:</p>
<pre><code>$> STSADM.EXE -o addwppack <cab filename #1>
$> STSADM.EXE -o addwppack <cab filename #2>
$> STSADM.EXE -o deletewppack <cab filename #1>
</code></pre>
<p>After the execution of the third command, the Web Part #2 doesn't have the DLL.
When I installed Web Part #2, SharePoint override the DLL file of Web part #1
The problem here is that the DLL of both files is copied to same location. That location is the Assembly name of DLL. That assembly name cannot be changed without recompiling again (I think).</p>
<p>Is there anyway to deploy two cab files independently, even if they share the same DLL?</p>
http://stackoverflow.com/questions/1852102/create-webpart-saving-its-data-on-leaving-article-page1Create webpart saving its data on leaving article page Dau Thanh Hai2009-12-05T12:38:07Z2009-12-05T15:41:38Z
<p>I have one custom article page layout which has a multiple lookup field called Tags refered to Tag list. In this layout, I put a webpart which do the task edit Tags for me. When I create a page from the layout and edit it, the webpart let me to add/remove tags easilly. How can I save data in the webpart when user press on link to call out-of-box function to save the page.
Any help will be appreciated.</p>
http://stackoverflow.com/questions/1848695/content-query-webpart-grouping-by-custom-column0Content Query WebPart - Grouping by custom column?Kolten2009-12-04T18:11:37Z2009-12-04T18:47:19Z
<p>We have a LIST of web pages that we use as News items on our Sharepoint 2007 site.
On our main page, we have a Content Query WebPart that queries this list, and nicely displays the name, and a few lines of the content. This is taken from our Pages Library that was created as part of our Publishing Template.
We would like to "Group" items by categoriezing them (Top Stories, Location-Specific Events, etc) and show them using the Content Query WebPart.
We have created a custom column called "News Category" and we would like to group the items inside the Content Query WebPart by this. Unfortunately the Custom Column doesn't show up when sorting through the "Group By" fields..
Is this at all possible, or am I wasting my time? We are not looking to add 3rd party components to our site at this time...</p>
http://stackoverflow.com/questions/1848398/sql-joins-and-logic1SQL joins and logicGeo Ego2009-12-04T17:17:09Z2009-12-04T18:33:22Z
<p>I am working with a SharePoint web part that I am designing in C#. I need to query a SQL Server 2005 database to return the names of machines that are associated with a particular customer, selected by the user.</p>
<p>The problem is that there are different types of machines, and the names themselves are stored in several other tables. Here is the structure as it pertains to this question:</p>
<p>I have a table "customerInfo" which contains the ID and name of each customer. The ID is the primary key.</p>
<p>A table "machineIDs" links the customer IDs to the corresponding machine IDs. The machine ID is the primary key.</p>
<p>I have two tables for two types of machines, "machine1" and "machine2." machine1 contains the name of the machine itself, but machine2 only contains the ID of the type of machine it is. With both of these tables, the machine ID is the primary key.</p>
<p>Then I have a table "specialtyMachine." This table contains the name of the machine and the ID of this type of machine. The primary key here is a type ID, which identifies the type of machine, whereas the machine ID identifies the specific machine.</p>
<p>What I need to do is pull the machine name from machine1 and specialtyMachine, given just the customer ID. I'm not sure whether it's possible to do this with a complex join directly within the query, or if I will need to apply logic in the web part to pull this information together.</p>
<p>I would also like to know how I can think about this in terms of a generic model. I'd like to be able to recognize this and apply it generically in the future, as I'm sure it's a fairly common problem that I just haven't dealt with yet. Thank you.</p>
http://stackoverflow.com/questions/390864/wrapping-text-inside-a-bound-field-in-spgridview0Wrapping text inside a bound field in SPGridViewashwnacharya2008-12-24T06:05:16Z2009-12-01T20:00:03Z
<p>I am displaying some text in a column inside an SPGridView. The text happens to be more than a hunderd character long, and as a result, the webpart becomes too wide.</p>
<p>I tried setting BoundField.ItemStyle.Wrap to true, and I also tried BoundField.ControlStyle.Width and BoundField.ItemStyle.Width values but theyy didn't work...</p>
<p>How do i make the text wrap?</p>
http://stackoverflow.com/questions/1608194/what-if-you-want-webpart-communication-before-pageload0What if you want webpart communication before Page_Load?earlz2009-10-22T15:52:03Z2009-11-30T23:10:58Z
<p>Hi, I am needing to create some dynamic controls at Page_Load in the consumer webpart. In the Provider webpart I did some hacking and got it so I could get a controls value before viewstate is loaded in Page_Init. </p>
<p>So basically what I want is for webparts to be able to communicate before Page_Load. </p>
<pre><code>[ConnectionConsumer("FormRID Consumer","FormRIDConsumer")]
public void InitializeProvider(MyControl.IFormRID provider)
{
theProvider = provider;
FormRID = theProvider.FormRID;
}
</code></pre>
<p>That method doesn't get called until after Page_Load. This is a big problem for me because my consumers Page_Load depends on FormRID being set and accurate. I can't move my Page_Load code into Page_LoadComplete either because I am needing to create dynamic controls with viewstate(viewstate isn't restored after Page_Load) </p>
<p>So is there some work around I can use so that I can communicate before Page_Load. </p>
http://stackoverflow.com/questions/1495314/problem-grasping-webpart-communication0Problem grasping webpart communicationearlz2009-09-29T22:36:57Z2009-11-30T23:06:58Z
<p>Hi, I'm having trouble understanding some web part communication code, and how to make it work as needed. I'm fairly new to web parts, so I figure I'm over complicating it.</p>
<p>I have</p>
<pre><code>public interface IFormTypeRID
{
int FormTypeRID { get; }
}
</code></pre>
<p>For this page, I have a ListControl on the left which is a web part. When you select something with this list control, it posts back and sends this interface to the MainForm web part So I have this on the receiving end:</p>
<pre><code>private IFormTypeRID theProvider;
[ConnectionConsumer("FormTypeRID Consumer", "FormTypeRIDConsumer")]
public void InitializeProvider(IFormTypeRID provider)
{
theProvider = provider;
FormTypeRID = theProvider.FormTypeRID;
}
</code></pre>
<p>Now, my problem is that InitializeProvider happens <em>after</em> Page_Load. </p>
<p>This means that when a post back happens from inside the MainForm webpart, the FormTypeRID is never sent in. Well, thats easy just store it in view state or a hidden field.</p>
<p>But theres the problem.</p>
<p>How do I act on FormTypeRID being set if it's after PageLoad. Currently, I just have a setter method that calls the appropriate functions. This is troublesome however because the code in the setter must be executed twice. This is because FormTypeRID must be set in Page_Load because it is unknown whether our provider will be giving us our FormTypeRID or not(because we do not know if the post back happened because of the other webpart, or because of the FormMain) </p>
<p>I know I explained that horribly. But basically, how do you tell if a postback happened(and therefore a page_load) from one webpart(the provider) or another?(the consumer)</p>
http://stackoverflow.com/questions/1788848/deploy-web-part-as-a-feature0Deploy Web part as a featureSachin2009-11-24T09:11:18Z2009-11-24T13:37:46Z
<p>Hi all,</p>
<p>I have a web part dashboard.cs which render some HTML according to records in a list. No I have a site definition created. I want to integrate this web part in my site defination as a feature so when I Build my project with the help of install.bat i want to install this feature which will deploy this web part on respective site. Now when I go to site settings->site features This feature must have to be listed over there and once I install this feature my web part will be get populated when I swich my page in edit mode and click on add web part button.</p>
<p>Can anybody help me..?</p>
<p>Thanks in advance
Sachin</p>
http://stackoverflow.com/questions/1783424/sharepoint-smartpart-issue0Sharepoint Smartpart IssueSirTwilight2009-11-23T14:26:00Z2009-11-24T12:46:01Z
<p>Hi,
I am very new to Sharepoint programming, like the rest of my team is. We have decided to use smart part as our bridge between sharepoint and our development efforts. After some effort we got it up and running. However, the problem is, that when i use a simple user control for test, with sharepoint om code that gets names of files in a document library, sharepoint gives me a rather helpful "An unknown error has occured". This code works just fine when inside an aspx page. I have written another simple test user control that just executes a Response.Write() line to check is there a problem with executing code, but this one works just fine in smart part too.</p>
<p>Code goes like</p>
<pre><code>protected void Button1_Click(object sender, EventArgs e)
{
Microsoft.SharePoint.SPSite srv1 =
new SPSite("http://server:port/");
SPWeb web = srv1.OpenWeb();
var list = web.GetFolder("http://server:port/documentLibrary");
for (int i = 0; i < list.Files.Count; i++)
{
ListBox1.Items.Add(list.Files[i].Name);
}
}
</code></pre>
<p>Anything we may be missing or doing wrong?
Many thanks in advance...</p>
http://stackoverflow.com/questions/1783205/sharepoint-custom-web-part-with-active-directory1SharePoint Custom Web Part With Active DirectoryJake2009-11-23T13:44:36Z2009-11-23T15:37:47Z
<p>Hello all. I am currently working on a custom SharePoint web part (WSS 3.0, not MOSS) that will pull in information for all of the users in Active Directory to build an up to date employee directory. This web part shows things like phone number, address, and other similar fields. The issue that I am having is that, by default, the SharePoint web site on IIS is running as the user IUSR_. This user does not have access to Active Directory, so I am unable to retrieve any user information. </p>
<p>To get around this for testing I have hard coded the credentials for a test user which I added just for this purpose. This, obviously, is not ideal. If anyone removes this user or if they ever change the password then the web part will break and they will have no way to fix it (they have no in-house developers to take it over once I am finished here). To fix this problem, I would like to make the Username/Password custom properties on the web part so I can pass those to Active Directory to retrieve the information I need. The issue I am having with this is that the password is stored in plain text so anyone can read it. I would like it to display as <strong>****</strong> or something similar. Is there a way to make a custom property on a web part a password type?</p>
<p>If this isn't possible, can anyone recommend another way to accomplish what I am trying to do? At this time I cannot change the user that the SharePoint website runs as. Although, if I cannot find any other solutions I will try again to persuade them.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/416667/java-webpart-like-asp-net0java webpart like asp.net ?mascix2009-01-06T14:08:33Z2009-11-23T07:37:53Z
<p>I was reading asp.net webpart technology which gives users some personalization abilities under some rules and tools of webparts. </p>
<p>are there something like webpart technology lib under java ?</p>
http://stackoverflow.com/questions/1776513/binding-a-dropdownlist-and-then-adding-a-new-listitem0Binding a dropdownlist and then adding a new listitemiHeartDucks2009-11-21T19:38:54Z2009-11-21T20:01:57Z
<p>Hi,</p>
<p>I have a DropDown list which I Initialize in "CreateChildControls" and add to the controls collections. I then override the render method and then render the drop down list. The web part inherits from System.Web.UI.WebControls.WebParts.WebPart. </p>
<p>I bind the drop down list in my web part like this</p>
<pre><code>private void BindClientTypes()
{
DataTable dt = DB.GetAllClientTypes();
if (dt == null)
{
ltGlobalErrorMsg.Text = GlobalErrorMessage;
ltGlobalErrorMsg.Visible = true;
}
else
{
ddlClient.DataSource = dt;
ddlClient.DataValueField = "ID";
ddlClient.DataTextField = "Name";
ddlClient.DataBind();
ddlClient.Items.Insert(0, PleaseSelectItem);
}
}
</code></pre>
<p>If I try to set the selected index of the drop down list after the data bind, I get an error which says the control cannot have multiple selected items.</p>
<p>The code works fine, means that I can set the selected index after the data bind if I comment this line</p>
<pre><code>//ddlClient.Items.Insert(0, PleaseSelectItem);
</code></pre>
<p>Can anyone give any explanation on why this would work. </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1705519/webpart-deployment0WebPart DeploymentPrasad2009-11-10T03:48:01Z2009-11-21T00:44:47Z
<p>How to deploy a WebPart which contain aspx pages and images into SharePoint</p>
http://stackoverflow.com/questions/1709879/moving-data-views-across-sharepoint-sites0Moving Data Views Across Sharepoint SitesCorey O.2009-11-10T17:53:18Z2009-11-21T00:43:30Z
<p>We have a production SharePoint site that uses a custom database quite a bit. We have a dev site on a separate box where we develop all of our things then move them over to a live site when they are ready for our customers.</p>
<p>We have many pages that use data views to show information from the database. Most of the actual programmability is done with stored procedures and UDF's in the database itself. One of the problems we are having is that when we try to move these custom pages over from one site to another (even if within the same SharePoint installation), the data views become broken. As far as I can tell, the data views are associated with data connections via a GUID. We can go in and set up all of these connections by hand on the new site, however there is no option in the data view webpart to change the data view's associated connection.</p>
<p>At present, this pretty much prevents us from developing on a separate site at all. Doing a command-line SharePoint export/import is an all-inclusive way of accomplishing this. However, ignoring the limited options for this operation, it is at best unreliable. Our first attempts left out some of the content (like custom aspx pages). As we began to create more complex customizations on the SharePoint site, the export function stopped working altogether only to return cryptic errors.</p>
<p>Has anyone else found a good way to do this?</p>
http://stackoverflow.com/questions/1772178/create-a-list-url-links-and-deploy-it-as-a-feature0Create a List (url links) and deploy it as a featureAsh2009-11-20T17:48:56Z2009-11-20T18:52:21Z
<p>Hi All,</p>
<p>I'm very new to SharePoint, so apologies if this sounds a little basic.</p>
<p>I want to create a List in SharePoint that is just purely URL links, but then make it available to every site collection that we will create. </p>
<p>Once this list is created, I need it to display in a webpart (like that standard 'links' webpart). I guess I will need to create a Feature, so that it can be activated at Site Collection level. </p>
<p>Any ideas how this can be achieved please?</p>
<p>Thank you all kindly in advance, Ash ;-)</p>
http://stackoverflow.com/questions/1769585/javascripting-in-custom-web-part0javascripting in custom web partjolly2009-11-20T10:25:13Z2009-11-20T10:30:17Z
<p>Hi I am writing javascript in my custom webpart's .cs file but it is giving me illegal XML character exception in browser.</p>
<pre><code>PageJavaScript.Append(@"function closeLoadedDiv(){ <%=Page.ClientScript.GetPostBackEventReference(btnLinkButton, "", false)%> }")
</code></pre>
<p>I have used escape sequence for < but it is still not working</p>
http://stackoverflow.com/questions/183950/add-scriptmanager-to-page-programmatically8Add ScriptManager to Page Programmatically?Kyle Trauberman2008-10-08T17:42:59Z2009-11-19T05:05:40Z
<p>I am developing a WebPart (it will be used in a SharePoint environment, although it does not use the Object Model) that I want to expose AJAX functionality in. Because of the nature of the environment, Adding the Script Manager directly to the page is not an option, and so must be added programmatically. I have attempted to add the ScriptManager control to the page in my webpart code.</p>
<pre><code>protected override void CreateChildControls()
{
if (ScriptManager.GetCurrent(Page) == null)
{
ScriptManager sMgr = new ScriptManager();
// Ensure the ScriptManager is the first control.
Page.Form.Controls.AddAt(0, sMgr);
}
}
</code></pre>
<p>However, when this code is executed, I get the following error message:</p>
<blockquote>
<p>"The control collection cannot be modified during DataBind, Init, Load, PreRender or Unload phases."</p>
</blockquote>
<p>Is there another way to add the ScriptManager to the page from a WebPart, or am I going to have to just add the ScriptManager to each page (or master page) that will use the WebPart?</p>
http://stackoverflow.com/questions/1535167/content-query-web-part-not-displaying-without-web-part-zone2Content Query Web Part not displaying without web part zonemrtrombone2009-10-08T01:37:03Z2009-11-18T22:01:51Z
<p>I am building a Sharepoint WCM site for a client.</p>
<p>As part of a page layout I inserted a content query web part directly in the page, not in a web part zone (so the users couldn't edit it). Everything works fine in my development environment however when I deployed it to production the web part would say 'no items returned'. </p><p>When I went into the feature directory and changed the page layout to include the webpart zone wrapper it fixed the problem however I don't really want it to have a web part zone. My development environment is Windows 2003 however the production site is Windows 2008.</p> <p>Can anyone explain why it may not be working?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1756205/asp-net-webparts-with-oracle-10g0ASP.NET webparts with Oracle 10gHemant Kothiyal2009-11-18T14:01:42Z2009-11-18T14:08:01Z
<p>Hi I would like to use webparts in ASP.NET website . Is there any support of webparts with Oracle 10g in ASP.NET.</p>
<p>I am new in webparts. I don't know whether there is any provider available for Oracle.</p>
<p>Please help me?</p>
http://stackoverflow.com/questions/1752687/sharepoint-2007-page-viewer-webpart-autoscroll-to-webpart0Sharepoint 2007 Page Viewer webpart - autoscroll to webpart?Kolten2009-11-17T23:46:10Z2009-11-17T23:46:10Z
<p>We have a Page Viewer webpart setup to display our Out of Office public folder calendar from Exchange. This is the URL the webpart is setup to point to: </p>
<pre><code>http://<servername>/owa/?cmd=contents&module=publicfolders&f=<foldername>/<foldername>/<foldername>/<foldername>/Calendars/out%20of%20office&part=1&view=Daily
</code></pre>
<p>...We noticed that our page automatically scrolls down to this webpart every time we load the page. Almost like there is an anchor attached to it or something. This is undesirable.</p>
<p>Does anyone know why this particular webpart might behave this way? Can this be avoided?</p>
<p>Thanks all.</p>
http://stackoverflow.com/questions/1747866/getting-list-item-url-in-sharepoint-20071Getting List Item URL in Sharepoint 2007Gazeth2009-11-17T10:18:30Z2009-11-17T20:55:13Z
<p>I'm creating a webpart that aggregates a load of content from different lists throughout our site collection what I can't workout is how to get the exact link to each item. All I seem to get back is {site}/{listtitle}/1.000 how do I get this "1.000" to say "pagename.aspx?id=1", is this something I have to work out myself or is there a function to do this?</p>
http://stackoverflow.com/questions/1742214/how-do-i-prevent-xss-when-allowing-simple-formatting-and-hyperlink-in-a-sharepoin0How do I prevent XSS when allowing simple formatting and hyperlink in a Sharepoint webpart?Per2009-11-16T13:32:10Z2009-11-17T10:05:48Z
<p>I'm building a webpart for a Sharepoint site that allows the user to enter information into a textbox that will eventually be showed to other users. The problem is that I need to allow simple formatting (bold, italic etc) and also allow the user to enter an url (a <a href=".....). I don't want to expose a XSS exploit since I do not trust the users using my webpart not doing that.</p>
<p>What are my best alternatives when not wanting to write a fully fledged html parser?</p>
<p>There is a <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.utilities.sphttputility.htmlencodeallowsimpletextformatting.aspx" rel="nofollow">SPHttpUtility.HtmlEncodeAllowSimpleTextFormatting(string)</a> that does almost what I need. It allows simple formatting such as <B>, <I>, etc. The problem is that I want to allow hyperlinks as well. Does anyone know if there is some builtin functions in Sharepoint/ASP.NET that does what I want?</p>
<p>If I enable "Enhanced rich text" on a "Multiple Lines of Text" column in a Sharepoint list, it seems to do exactly what I want (it allows formatting and hyperlinks, but not evil stuff) but I cannot figure out how and where it does that?</p>