Sharepoint 2013 - InfoPath Web Part Errors

There may be a better way to accomplish what I'm doing so I will explain the idea first.  I'm putting together a PMO Sharepoint Site which contains drill down project information from 4 groups to over 500 projects.  I would like to display the
data in a more dynamic way than just in lists so I am attempting to use an InfoPath form to display dynamic data in a more friendly text view.
After creating a form view in InfoPath 2010, I loaded it into Sharepoint 2013.  I went through "Connections" and selected "Get Form From" and chose a web part list.  After choosing the view and saving I receive this error.  Sometimes
it saves correctly but when I go back to edit the web part this error appears.

This has been answered for SP 2010 at SP:SO. Things wont change much in SP 2013 as far as VWP is concerned. Basically you will need to implement Custom Web Part Editor.
http://stackoverflow.com/questions/6946153/edit-webpart-properties-with-dynamic-dropdownlist
Here is an example.
http://sptechbytes.blogspot.ca/2013/02/sharepoint-2010-creating-custom-editor.html
Amit

Similar Messages

  • SharePoint 2013 Visual Web Part Custom Property.

     How to create drop down control to display existing libraries in current web site using a custom web part property?i want to show this control on web part configuration.then users can select the relevant library without typing.(SharePoint
    2013 Visual Web Part).
    Thanks 

    This has been answered for SP 2010 at SP:SO. Things wont change much in SP 2013 as far as VWP is concerned. Basically you will need to implement Custom Web Part Editor.
    http://stackoverflow.com/questions/6946153/edit-webpart-properties-with-dynamic-dropdownlist
    Here is an example.
    http://sptechbytes.blogspot.ca/2013/02/sharepoint-2010-creating-custom-editor.html
    Amit

  • How to add external user in sharepoint using infopath web part

    hi,
    what i am trying to achieve is,
    1. Create an infopath web part which will take email id of external user as input(ex: [email protected]).
    2. Take an email id of that user into infopath form and add that to sharepoint group.
    3. Now that newly added user must be able to login in to sharepoint using his email id.
    How could i achieve this? 
    If redirect me to example or screen shots then it will be better to understand.

    Out of the box you can not use email address and passwords to authenticate, for this you would need to create a custom authentication mechanism
    http://code.msdn.microsoft.com/office/Claims-Walkthrough-51beedc5
    or just google it:
    https://www.google.be/search?hl=en&q=sharepoint+custom+authentication+provider&btnG=Search&meta=&aq=f&aqi=g10&aql=&oq=&gs_rfai=
    Once this is implemented, you need to create custom code in you form, to call this new API and register the user, but 2nd step depends on how you do first.
    Follow me on Twitter <<<
    levalencia Blog <<<

  • Internet Explorer 11 and SharePoint 2013 Standard - Web Parts and Calendar Don't Display/Render Correctly

    Hello everyone.
    I am currently running a fully patched (Service Pack 1) version of SharePoint Standard 2013 On Premises. I am having 2 problems that are reproducible on both Windows 7 and Windows 8.1 on multiple computers when running Internet Explorer 11 (fully updated
    through Windows Update). The issues are "fixed" when running compatibility view in the browser or using Chrome/Firefox.
    The issues are as follows:
    Issue 1 Calendar view does not display correctly
    Issue 2 Web parts do not display correctly when editing a page.
    Picture of calendar
    Webpart "edit menu dropdown" in upper right corner is replaced with 2 up arrows. Clicking minimizes web part.
    Is there any word on a fix for this? Is this something only I am experiencing? Is there an issue with my SharePoint server? I would hate to have to uninstall IE11 from 300 machines and install IE10.
    Thanks

    There are a few critical issues
    Pages will not enter edit mode. You will click Settings > Edit Page and the page will simply refresh but will not change over into edit mode. Seems to only affect pages with
    Web Part Zones.
    Calendar will not enter edit mode.
    Web Part Properties cannot be modified. If you are able to get into edit mode (you can edit wiki pages) you will not be able to modify existing Web Parts by using the Web Part
    Properties panel. Instead you will see a really weird collapse button that looks like it is coming from the mobile view but you cannot modify web part properties… even through the ribbon controls.
    I cannot use the import spreadsheet app, the error says it is not supported with the current browser.
    When I hoover over a “people” field I cannot see their information.
    I had all these capabilities with IE9
    This suggestion I found online appears to fix issues 1-3.
    http://windowsitpro.com/windows-7/fixing-most-not-all-ie11-compatibility-problems
    To run in compatibility mode
    Press ALT + T when viewing your      SharePoint page
    Click Compatibility View Settings      in the menu that appears
    Click Add to add the current      SharePoint site to your list of compatibility view pages
    Click Close

  • Access Exchange Service From SharePoint 2013 Custom Web part getting The request failed with HTTP status 401: Unauthorized.

    I want to Fill a drop down with Outlook Meeting of Current log-in user in SharePoint 2013 web part for default credentials I am using the following code
     ExchangeServiceBinding binding = new ExchangeServiceBinding();
                ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, sslPolicyErrors) => true;
                binding.RequestServerVersionValue = new RequestServerVersion();
                binding.RequestServerVersionValue.Version = ExchangeVersionType.Exchange2010_SP2;
                binding.PreAuthenticate = true;
                binding.UseDefaultCredentials = true;
                binding.Credentials = CredentialCache.DefaultCredentials ; 
                string server = "https://*********/ews/Exchange.asmx";
                binding.Url = server;
    I Am Getting the Error "The request failed with HTTP status 401: Unauthorized."
    but when I Replace  the line  
    binding.Credentials = CredentialCache.DefaultCredentials ; 
    with 
     binding.Credentials = new NetworkCredential(userName, password, domain);
    Its run fine.  Is there any way I could able to use default credential.
      

    Hi,
    As this question is more relate to Exchange development, I suggest you post it to the corresponding forum, you will get more help and confirmed answers from there.
    http://social.msdn.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    Best regards
    Patrick Liang
    TechNet Community Support

  • Sharepoint 2013 Visual Web part Deloyment

    Hello,
    I built a visual web part(sharepoint 2013) using visual studio 2012. But when I tried deploying, I got this error message:
    "Error occured in deployment step 'Activate Features': Feature id '****' is not installed in this farm, and cannot be added to this".
    Approaches I made to fix this :
    1) Tried changing the scope of Feature to Farm/Web/WebApplication
    2) Tried installing feature manually using Install-SPFeature -AllExistingFeatures
    3) Tried resetting IIS
    None of these attempts helped me. Can someone help me on this ?
    Thanks
    KG

    Hi,
    According to your post, my understanding is that you get error while deploying the visual web part.
    To narrow down whether the issue is related to the project itself, you can do some steps as below.
    Re-open the visual studio, create a new clean project with a simple visual web part then check whether it works.
     What’s more, you can check whether feature assembly is register in GAC or not. So try to uninstall feature and use below command: (if have not done before)
    Install-SPSolution -Identity MYfeature.wsp  -GACDeployment -force
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to Add a User Control to a SharePoint 2013 Visual Web Part ?

    Hi,
    1.I have created SharePoint 2013 Farm Solution through VS 2012.
    2.Added visual Web part
    3.Created a User control (Farm Solution ) and added some Control From tool Box.
    4.Drag and drop user control from solution explorer to visual web part.
    so its  Register tag and with prefix tag user controls automatically added on visual web part source. when i try to build solution it throws Exception:
    Exception :The name 'InitializeControl' does not exist in the current context.
    Please Provide solution after try/or proper workaround.
    Thanks,
    Siddheshwar

    Site name=http://sitename:22222/
    Visual Web part:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Src="~/_controltemplates/15/SP2013Controls/SPControls.ascx" TagPrefix="uc1" TagName="SPControls" %>
    <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SPWebpart.ascx.cs" Inherits="SP2013Controls.SPWebpart.SPWebpart" %>
    <uc1:SPControls runat="server" id="SPControls" />
    User Control Code:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SPControls.ascx.cs" Inherits="SP2013Controls.ControlTemplates.SP2013Controls.SPControls" %>
    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><asp:Button ID="Button1" runat="server" Text="Button" />
    Deployement Location:{SharePointRoot}\Template\ControlTemplates\SP2013Controls\
    After User controls added on webpart .g.cs file getting blank.
    After 1st Build:
    'InitializeControl' does not exist in the current context
    The file '/_controltemplates/15/SP2013Controls/SPControls.ascx' does not exist.
    after 2nd Build Try:
    'InitializeControl' does not exist in the current context

  • SharePoint 2013 Infopath Web Service Get File within list permissions

    Hello,
    I am looking for a web service to pull a form within a form libraries permissions.  So a user creates a form and requests access for him/herself and whomever he/she wants to have access to the form, I then go to file share with and grant only these
    people access.  lets say I now have 2000 forms and and I want a column that says these people have been granted access to this file instead of clicking each file going to properties and checking share with permissions.  What web call would I use
    for this, been searching and keep finding how to share with people instructions and now how to use a web service to pull the names.

    Hi Ahmed,
    Please go to task list page and click customize form, then publish it in the InfoPath form designer.
    Now add a new page in SharePoint site, insert task list web part, then insert an InfoPath form web part. Click the triangle on the top right corner > Edit web part > Connections > Get form from, see if you could select task now.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Access Exchange 2013 Calendar from Sharepoint 2013 OWA Web Part

    Hi,
    For the moment I have five User
    Mailboxes on Exchange 2010 whose
    calendars that appear in a SharePoint
    2013 using Outlook Web App Web Part.
    In Exchange 2010, IIS has created a new
    WebSite with OWA, ECP
    and some more Virtual Directories,
    where OWA is Windows Integrated
    and Basic Auth. enabled (not
    FBA).
    This makes so users do not have additional
    logins in SharePoint when they look at
    the calendars.
    I now want to move these mailboxes to an Exchange
    2013. I must then create a new WebSite
    with Win.Integrated etc, but have
    heard it is unsupported. Is there
    any other way to solve this?
    Best Regards

    Hello,
    Sorry for delayed response.
    I recommend you check the Outlook Hotfix and version number again via Control Panel.
    Please check the version number via outlook 2010 "File".
    If the outlook version number is 14.0.7113.5000, please try my above suggestion to specify the SSL certificate principal name. Because XP system is not always to look for the next lines on a SAN certificate.
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • SharePoint 2013 - Media Web Part and Silverlight

    Hi
    Is Silverlight mandatory for Media Web Part.? As per my understanding .WMV and .MP4 files will be played in HTML 5 player with IE 9 and above.
    I have configured a Media Web Part with a .WMV video file. We have to use IE9 browser. The video plays with Silverlight but if I uninstall Silverlight from machine it doesn't play. How to make these videos play in machines without
    silverlight?
    Thanks
    Ari

    Hi Ariharaselvan,
    If you use Media Web Part to play the video, you need to install Silverlight on the client server. If not, it doesn’t work.
    As a workaround, you can use a third party media player to play the video. Here is a CodePlex solution, please have a try:
    http://svp.codeplex.com/
    There are some articles for your reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/aed125ee-614d-4fd6-9426-93aacc702b0d/play-video-on-page-without-using-silverlight?forum=sharepointgeneralprevious
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/26a7639d-6b77-4bc3-8f36-0db10b132daf/using-internet-explorer-8-to-play-sharepoint-2013-video-stream-without-silverlight?forum=sharepointadmin
    http://sharepointconnoisseur.blogspot.in/2011/05/play-video-and-media-files-in.html
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • SharePoint 2013 Mobile Web Part development

    i want to create a Visual web part which will render in Mobile in share point 2013
    Thanks and Regards
    Er.Pradipta Nayak
    Visit my Blog
    Xchanging

    If you want just for the webpart try using WebPartMobileAdapter class, this is in SharePoint 2010, see if it works in SP 2013
    http://www.c-sharpcorner.com/uploadfile/hec.ravi/programmatically-create-web-part-for-mobile-in-sharepoint2010/
    check here on how to implement responsive web design
    http://blogs.msdn.com/b/sharepointdev/archive/2013/04/01/implementing-your-responsive-designs-on-sharepoint-2013.aspx
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to display alert message box in sharepoint 2013 visual web part?

    Hi,
    I am developing a visual web part which submits data to the list. Once it submits the data, I should convey to the user that the data has been submitted successfully.
    I tried using clientScript.RegisterStartUpScript etc, but, none of them are working. It is not throwing any error , but pop up is not getting displayed.
    Preferrably, I would like to call this alert message from cs page, because, I will be using it in several places.
    Please help me.!
    Thanks in advance.
    Hepsi

    Hepsi, 
    Step 1. On the Page_Load - This way you can pass parameters. Try this
    btn.Attributes.Add(
    "onclick", string.Format("return openSPPopup('{0}?{1}={2}', '{3}')", YourPage_URL, var1_Name, value1, Param1_PopupTitle));
    Step 2 : Javascript function
    function openSPPopup(navigateURL, popUptitle) {
    var options = {
    width: popupWidth,
    height: popupHeight,
    url: navigateURL,
    scroll: 0
    SP.UI.ModalDialog.showModalDialog(options);
    return false;
    Step 3: The popup close code (in .cs file) – I do it this way as it is just close dialog code and easy to write.
    protected void btnClose_Click(object sender, EventArgs e)
    { this.Page.ClientScript.RegisterStartupScript(this.GetType(), "PopupScript", "SP.UI.ModalDialog.commonModalDialogClose(1, 1);", true);
    Courtesy -
    Thread
    Try this - https://bramdejager.wordpress.com/2011/03/21/using-sp-ui-dialog-and-sp-ui-notify-from-code-behind/
    http://msdn.microsoft.com/en-us/library/ff798390.aspx
    http://stackoverflow.com/questions/9833907/asp-net-confirm-before-executing-codebehind
    http://www.codeproject.com/Questions/443131/Call-to-javascript-Function-from-code-behind-using
    http://www.c-sharpcorner.com/uploadfile/ledomoon/calling-code-behind-function-in-javascript/
    Hope they will help!
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • SharePoint 2013 Filter Web Part configure connection webpage blank

    Hi,
    I've got a problem at one of my clients. I'm trying to connect a filter web part to a document library.
    I'm configuring a connection and the first pop-up (where you can configure a "Get Parameters From or Get Filter Values from" connection type) shows up fine.
    When I select one of the options the next screen is all blank.
    I've used IE in different modes (IE 11, IE 10 IE 9) and also tried using Chrome, but all the same result.
    Can anyone help me?

    Hi Elmar,
    According to your description, my understanding is that the Configure Connection webpage of the filter web part was blank.
    I recommend to add the site where the filter web part existed to the trusted zone and add to compatibility view in Internet Explorer to see if the issue still occurs.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Web Part Error From build-in "Contacts" App

    My SP 2013 Foundations has been functioning normally for the past few months until this week. I added the built-in "Contacts" app back when the site was built. This week for some reason when I go to click "Add", I receive the following
    error:
    "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. Correlation ID: f590159c-dcb7-a0f5-9dc9-76bb9b18c79e."
    I can click "edit" on that list and make changes fine.
    Attempted to Google this one but for the most part my search has turned up nothing. This error seems to be experienced most times by individuals who built their own custom web parts and did not add Safe Controls to the web.config file. How could I get an
    error like this with the default/built-in app?
    I don't see anything helpful in the logs ( %SystemDrive%\inetpub\logs\LogFiles ) as it just shows the point where I get the error, without displaying any more info: 2013-04-26 14:55:03 192.168.0.67 GET /Lists/Company+Directory/Contact/newifs.aspx
    If you need any more information, please let me know! Thanks

    Went to the log folder here:
    I can see this in the log files when I try to click "New":
    04/30/2013 13:28:21.87 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (PostResolveRequestCacheHandler). Execution Time=28.0750765809621 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.88 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Web Parts ajpj6 High UnsafeControlException: 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. 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.88 w3wp.exe (0x1D70) 0x200C SharePoint Foundation General ajlz0 High Getting Error Message for Exception Microsoft.SharePoint.ApplicationRuntime.SafeControls+UnsafeControlException: 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. at Microsoft.SharePoint.ApplicationRuntime.SafeControls.GetTypeFromGuid(Boolean isAppWeb, Guid guid, Guid solutionId, Nullable`1 solutionWebId, String assemblyFullName, String
    typeFullName, Boolean throwIfNotSafe) at Microsoft.SharePoint.WebPartPages.SPWebPartManager.CreateWebPartsFromRowSetData(Boolean onlyInitializeClosedWebParts) 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.88 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Web Parts 7935 Information http://(redacted)/Lists/Company Directory/Contact/newifs.aspx - An unexpected error has been encountered in this 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. 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.92 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Render Ribbon.). Parent SharePointForm Control Render 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.92 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Render Ribbon.). Execution Time=4.37541642862431 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.93 w3wp.exe (0x1D70) 0x200C SharePoint Server Search Query dn4s High FetchDataFromURL start at(outside if): 1 param: start 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc

  • Web Part Error: A Web Part or Web Form Control on this Page cannot be displayed or imported.

    SharePoint 2007 custom (VS 2008) solution is upgraded to SharePoint 2013 using (VS 2012). I followed this approach.
    I had created new empty project (solution) in SharePoint 2013 using (VS 2012) compiled and deployed successfully. All safe controls are registered in the web.config file. After deploying solution i Restarted IIS also, still getting this error. How to resolve
    Error
    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. Correlation ID: 5d217c9c-1827-7083-80cd-e095a30befee.
    Show Error Details
    Hide Error Details
    [UnsafeControlException: 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.]
      at Microsoft.SharePoint.ApplicationRuntime.SafeControls.GetTypeFromGuid(Boolean isAppWeb, Guid guid, Guid solutionId, Nullable`1 solutionWebId, String assemblyFullName, String typeFullName, Boolean throwIfNotSafe)
      at Microsoft.SharePoint.WebPartPages.SPWebPartManager.CreateWebPartsFromRowSetData(Boolean onlyInitializeClosedWebParts)
    <menu class="ms-hide" id="MSOMenu_WebPartMenu"><ie:menuitem id="MSOMenu_Minimize" text="Minimize" title="Collapse this web part." type="option"></ie:menuitem><ie:menuitem
    id="MSOMenu_Restore" text="Restore" title="Expand this web part." type="option"></ie:menuitem><ie:menuitem id="MSOMenu_Close" text="Close" title="Close this Web Part. You can still
    find it under closed Web Parts section in the insert ribbon. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem iconsrc="/_layouts/15/images/DelItem.gif" id="MSOMenu_Delete" text="Delete"
    title="Delete this Web Part from the page. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem type="separator"></ie:menuitem><ie:menuitem iconsrc="/_layouts/15/images/EditItem.gif"
    id="MSOMenu_Edit" text="Edit Web Part" title="Change properties of this shared Web Part. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem id="MSOMenu_Connections"
    text="Connections" title="Show connections options for this Web Part. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem type="separator"></ie:menuitem><ie:menuitem
    id="MSOMenu_Export" text="Export..." title="Export this Web Part. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem iconsrc="/_layouts/15/images/HelpIcon.gif" id="MSOMenu_Help"
    style="display:none;" text="Help" type="option"></ie:menuitem> </menu>        

    Hi Ashok,
    According to your description, my understanding is that you got an error after you re-built a SharePoint 2007 solution with VS2012, and deployed it.
    Make sure the Namespace and Type Name are consistent across all files where indicated. Also with matching case sensitivity. Verify web.config file and assembly in GAC or virtual directory bin folder in post deployment.
    More information, please refer to the link below:
    http://roykimsharepoint.wordpress.com/2013/04/27/classic-web-part-errors/
    Here is a similar post for you to take a look at:
    http://stackoverflow.com/questions/1689707/sharepoint-web-part-type-could-not-be-found-registered-as-safe
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • READ statement problem

    TYPES : BEGIN OF itab,          matnr LIKE eban-matnr,          menge LIKE eban-menge,        END OF itab. TYPES : BEGIN OF itab2,           maktx LIKE makt-maktx,         END OF itab2. DATA : it_eban TYPE STANDARD TABLE OF itab. DATA : it_makt TYPE

  • Can I try CC without Updating my CS6?

    I know I can install both CS6 and CC, but I'm still unsure about how the trial works.  I've downloaded the Creative Cloud "downloader" (whatever you call it) which tells me what's already installed and what can be installed.  Under "Installed Apps" i

  • Dc7900 crashes and has display driver error

    Hello, Just bought this off lease  unit and the computer keeps crashing. When it doesnt crash it has issues with the display at times and recovers saying that there was a display driver error and that it was recovered. Any idea on how to fix this? Th

  • Best settings for archiving HDV

    Hi, I've done a lot of searching on google and can't really determine the best way to do this. I am trying to find out the best way to export video for archive. I shoot on HDV. What export settings do you find to work the best for you and why. I use

  • Macbook Pro shuts down during boot

    Hi there, Few days ago I spilled some beer on my 2 weeks old Macbook Pro... I immediately cleaned it, removed the battery and charger and left it to dry for 1.5 day. After the drying period I tried to power up the machine, it did work but unfortutane