Sharepoint 2013 Web Parts missing - XsltListViewWebPart, Data View Web Part ...

Hi,
I'm using a SP2013 standalone dev server and I can´t find some web parts like XsltListViewWebPart and Data View Web Part.
I was expecting to find a category like "Lists and Libraries" or "Authoring" but I can´t find it.
I'm a site collection admin and have standard, enterprise and publishing features activated.
Shouln´t I see those Web Parts?
I noticed that I don´t have any file "XsltListViewWebPart.webpart" on my server file system. should it exists there?
Thanks,
DD 

Hi,
If you want to add a XsltListViewWebPart into page via UI.
In SharePoint 2010, we can find in "Lists and Libraries" category.
In SharePoint 2013, the category named "Apps".
 Best Regards
Dennis Guo
TechNet Community Support

Similar Messages

  • SharePoint 2013 SQL Server Reporting Services Report Viewer (Web Part) - IE Tab Title

    Hi,
    We are using a wiki Library to create page with SQL Server Reporting Services Report Viewer Web Part.
    Everything is working great except for the Internet Explorer tab, instead of giving me the name of the Report it is showing the name of the web application. All the other wiki pages is working fine.
    Regards,
    Social Technet Microsoft.

    Hi Brysk,
    Is there any difference between the problemaitc page containing the webpart and other working wiki pages for showing the title name in IE tab?
    The IE tab should show the information in tag<title> of the page, please check if it is correct for that page (using F12).
    Also check if it is related to IE browser compatibility issue.
    Thanks
    Daniel Yang
    TechNet Community Support

  • How do I set the scope to recursive in the Data View Web Part in SP 2013?

    How do I set the scope to recursive in the Data View Web Part in SP 2013?
    I have items in folders that I would like to display in the data view web part out of their folders.  I know that I need to set the scope to recursive.  I found documentation on how to do it in 2010, but since they removed all views other than
    the code view, I am unsure about how to do so.
    Link to article describing how to do what I am trying to do in 2010:
    https://www.nothingbutsharepoint.com/2009/05/13/data-view-web-part-folders-part-2-aspx/

    Hi,
    In SharePoint Designer 2013, we can click the code of the Data view web part. Then switch the tab to "OPTIONS". And then we can find the Folder Scope option, you can select "Show All Files of All Folders"
    to achieve your requirement.
    Thanks,
    Dennis Guo
    TechNet Community 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]
    Dennis Guo
    TechNet Community Support

  • Filter in data view web part using sharepoint designer 2010

    Hi,
    i have a scenario that there are 4 column Name, shift time, Location, Date. so i have to create a data view web part using designer. 
    further conditions are:
    1.Shift time should be radio button and filter the data accordingly.
    2. Data display only for current date(system date).
    3. Group by Location.
    i have complete all things except how to display data according current date. its showing all dates result.
    So please help me how to give a expression or filter to do this. if you have xslt code then plz let me know.
    Please help ASAP.
    Thanks
    Vivek

    Hi Vivek,
    If i understand it right, you know how to do other bits and want help in displaying data for only current date. on your view you can use filter condition as :
                    column: Date
                    condition : is equal to
                     value:     [Today]
    Let me know if this helps.
    Regards
    P
    Please don't forget to mark an answer if it solves your problem.

  • Modify the data source of a data view web part

    I have a dataView web part deployed in a template in multiple site collection. This dataView hasn't any query set up, so it loads a lot of items and this is slowing down my system.
    Now I want to programmatically put a query overriding the existent (empty) one and I'm doing like this:
    System.Web.UI.WebControls.WebParts.WebPart y = (System.Web.UI.WebControls.WebParts.WebPart)item;
    Microsoft.SharePoint.WebPartPages.DataFormWebPart z = (Microsoft.SharePoint.WebPartPages.DataFormWebPart)item;
    StringBuilder dataSourceString = new StringBuilder("<%@ Register TagPrefix=\"sharepoint\" Namespace=\"Microsoft.SharePoint.WebControls\" Assembly=\"Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c\" %>");
    dataSourceString.Append("<%@ Register TagPrefix=\"WebPartPages\" Namespace=\"Microsoft.SharePoint.WebPartPages\" Assembly=\"Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c\" %>");
    dataSourceString.Append("<sharepoint:SoapDataSource runat=\"server\" SelectUrl=\"http://intranet.contoso.com/sites/spc/_vti_bin/lists.asmx\" InsertUrl=\"\" UpdateUrl=\"\" DeleteUrl=\"\" SelectAction=\"http://schemas.microsoft.com/sharepoint/soap/GetListItems\" InsertAction=\"\" UpdateAction=\"\" DeleteAction=\"\" SelectPort=\"ListsSoap\" InsertPort=\"\" UpdatePort=\"\" DeletePort=\"\" SelectServiceName=\"Lists\" InsertServiceName=\"\" UpdateServiceName=\"\" DeleteServiceName=\"\" AuthType=\"Basic\" AuthUserName=\"contoso\\administrator\" AuthPassword=\"pass@word1\" WsdlPath=\"http://intranet.contoso.com/sites/spc/_vti_bin/lists.asmx?WSDL\" XPath=\"\" ID=\"SoapDataSource3\">");
    dataSourceString.Append("<SelectCommand><soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"><soap:Body><GetListItems xmlns=\"http://schemas.microsoft.com/sharepoint/soap/\"><listName>Jobs</listName>");
    dataSourceString.Append("<Query><Where><Eq><FieldRef Name=\"Title\" /><Value Type=\"Text\">2012_080_A_0</Value></Eq></Where></Query>");
    dataSourceString.Append("<rowLimit>9999</rowLimit></GetListItems></soap:Body></soap:Envelope></SelectCommand><InsertCommand></InsertCommand><UpdateCommand></UpdateCommand><DeleteCommand></DeleteCommand></sharepoint:SoapDataSource>");
    z.DataSourcesString = dataSourceString.ToString();
    manager.SaveChanges(z);
    In my code, I can see the DataSourceString changing, but if I refresh the page it is still loading all the data: why?!

    Hi,
    According to your description, my understanding is that you want to change the data view web part datasource programmatically.
    We need to override the databind method like below:
    public class ExtendedDataFormWebPart : DataFormWebPart
    public override void DataBind()
    this.DataSource = your own data source;
    base.DataBind();
    Here is a detailed code demo for your reference:
    http://jamestsai.net/Blog/post/How-to-query-cross-site-lists-in-DataFormWebPart-Part-1-Build-your-own-data-source-for-DataFormWebPart.aspx
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Data View Web Part - List of Subsites and Document Libraries under Current Site - Must be able to Package as Site Template in SPDesigner

    Hi Guys,
    On the home page of each sub site I would like to be able to show a list of subsites and Document libraries that are under the current subsite.
    I started investigating a solution using Datasources with SOAP requests sent to the server but it is very difficult to understand how to surface it on the Data View WebPart.
    I have tried with the search results webpart but the problem is that it does not work well when packaged in a Site Template.
    Please advise.
    Thanks and Regards,
    Rhyan

    Ok,
    Here is the problem:
    When creating a mysite from powershell or script, apparently you can ONLY do this from a wfe (or a server running Microsoft SharePoint Foundation Web Application in services on server).
    You CANNOT create mysites from script on your appserver if it is not also a Web Application Server. I confirmed the same is true in my test farm. I guess I was always running most of these scripts on the webserver.
    I searched all over and cannot find this documented anywhere.
    Who do I contact to have Microsoft document this?
    It's Thursday morning, I've been working non stop since Saturday morning so you don't have to :)

  • Data view web part to display the most frequently accessed pages based on the user that is logged in

    I am working on a project in which I would like to display the top 5 most accessed pieces of content as links, based on the user that is logged in. Our MOSS 2007 implementation has subsites for all regions that we do business in, as an example North, South, East, and West. When a user visits the North region homepage, I would like a web part to display:
    Hello, <username>, here is a listing of your most accessed content:
    Link to One
    Link to Two
    Link to Three
    Link to Four
    Link to Five
    So each user would get a customized list based on their content access. We are not using my sites, but these would not work as we want the list to display on the home page of the region site.
    I am thinking that a data view may work here, but I am not sure. Any help is greatly appreciated.

    If you are running MOSS you may want to take a look at the Relevant Documents web part too.
    http://office.microsoft.com/en-us/sharepointserver/HA102410251033.aspx
    The Relevant Documents Web Part helps you create a personalized view of the documents that you create, check out, and change. In a large Document Center, the Web Part can save you time and effort by making files easier to find and use. The following figure shows the Web Part:

  • Sharepoint 2013 Reporting services not fetching data via linked server

    We have a functional SharePoint 2013 farm in production with WFE (Server 1 , windows server 2012) and WFE ( Server 2 , windows server 2012) and SharePoint databases including report server databases on  (Server 3, which SQL Server 2012 on windows
    server 2012)
    Kerberos Authentication is enabled and Windows Authentication happens. Claims to Windows Service seems to work correctly too. No double hop issue. The SharePoint Reporting Services seem to be configured correctly and Reports get generated as expected
    in the following cases.
     1. If data is being pulled from Server A (SQL Server 2008 R2 Server on Windows Server 2008), Report gets generated no issues.
     2. If data is being pulled from Server B (SQL Server 2008 R2 Server on Windows Server 2008), Report gets generated no issues.
    The problem:-
    We have a view on Server A, which is fetching data from Server B. This report does not get generated. Gives an NT/Authority logon failure. Server B is created as a linked Server on Server A. The setting to run under users security context is checked.
    If I execute Query Builder from Report Builder 3.0, the query on the view gets the data and data is displayed in the report for next 10-15 min but after that the connections gets lost or if the user logs out and logs back in, the connection is lost
    again.
    Has some one experienced a issue like this? Can a report not work on a view getting data from linked server? Or I have missed  some thing really important.
    Any help is highly appreciated?
    cheers!
    Rachna
    Rachna

    Hi,
    From your description, my understanding is that you got an error when you clicked System settings after configuring Reporting Services service application.
    What size did you use for the memory? Please make sure the server has enough memory to run SharePoint and all services.
    In addition, please open
    http://localhost:xxxxx/SecurityTokenServiceApplication/securitytoken.svc to check if there is something about this issue.
    Here is a similar post about this issue, please take a look at:
    http://whitepages.unlimitedviz.com/2012/07/setting-up-reporting-services-2012-with-sharepoint-2013/
    As this issue is about Reporting Services, I suggest you create a new thread on SSRS forum, more experts will assist you with SSRS.
    SSRS forum:
    https://social.technet.microsoft.com/Forums/office/en-US/home?forum=sqlreportingservices
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • SharePoint 2013 Service Pack 1 broke Explorer View (WebDAV)?

    We recently installed SharePoint 2013 Service Pack 1 and have since been troubled by Explorer View. Very often Explorer View doesn't work. This error often appears:
    "We're having a problem opening this location in File Explorer. Add this web site to your Trusted Sites list and try again."
    The weird thing is that sometimes the Explorer View works just fine, but more often it doesn't. There's are a lot of blogs / topics about this on the internet, but they all didn't help resolve this issue. We use persistent cookies for our STS (AllowSessionCookies
    == false), we've added the site to Trusted Sites, made sure WebClient service is running on the clients, cleared cookie caches, etc., etc.
    Explorer View works fine when we connect to Office 365 instances. But our local farm has these problems. We use ADFS auth.
    Our problems actually resemble the problems this guy had:
    http://blog.skadefro.dk/2011/09/sharepoint-2010-and-webdav.html
    But his fix doesn't seem to apply to us.
    This all started after installing Service Pack 1, so could this be a Service Pack 1 issue?

    Hi LZandman,
    There is a KB article, it provides that:
    Issue 2
    Assume that you access the date in a SharePoint Document Library. Then, you click Open with Explorer View when you view a SharePoint Document Library in Internet Explorer 10. In this situation, the operation fails, and you receive one of the following error
    messages.
    Error message 2
    We're having a problem opening this location in File Explorer. Add this web site to your Trusted Sites list and try again.
    Notes
    These issues occur only when the SharePoint server is configured for cookie-based authentication, such as SharePoint Online.
    You may encounter a similar issue when you use other Web Distributed Authoring and Versioning (WebDAV) servers that are configured for cookie-based authentication.
    Please take a look at :
    http://support.microsoft.com/kb/2846960/en-us , and download and install the hotfix, compare the result.
    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 RS - Adding a New "Data Source" or "Report Builder" in a Library

    I've installed SQL Server Reporting Services SharePoint Integration Mode. I also enabled SQL Reporting in the Library setting. But, When I click to open a new "Data Source" or "Report Builder" an error occurs:
    'New Document' requires a Microsoft
    SharePoint Foundation-compatible application and web browser. To add a document to this document library, click the 'Upload Document' button.
    SharePoint 2013 Enterprise
    SQL Server 2012 SP1 + RS add-in + PowePivot add-inn
    MS Office 2013 Professional Plus
    Internet Explorer 10
    I've also tried a hotfix pakage for office 2013 called: owssupp2013kb2726997fullfilex64glb
    Sharepoint Stssync Handler add-in infromation in Internet Explorer:
    Name:                   SharePoint Stssync Handler
    Publisher:              Microsoft Corporation
    Type:                   ActiveX Control
    Architecture:           32-bit and 64-bit
    Version:                15.0.4517.1001
    File date:              ‎Tuesday, ‎May ‎21, ‎2013, ‏‎12:57 PM
    Date last accessed:     ‎Today, ‎December ‎16, ‎2013, ‏‎36 minutes ago
    Class ID:               {BDEADEF5-C265-11D0-BCED-00A0C90AB50F}
    Use count:              6
    Block count:            0
    File:                   OWSSUPP.DLL
    Folder:                 C:\Program Files\Microsoft Office\Office15

    Hi,
    i had the same problem. First we figured out, that the Report Builder was working in the  Root Site Collection of a Web Application but not in any other Site Collection of the WebApplication.
    After that we took a look how the Report Builder is started. The Content Type got a Click Once Application as Template, but you can't open the URL in the Browser neither the referenced file can be found in the Feature folder on the SharePoint Server. Turns
    out SharePoint does some crazy http redirection and that this doesn't work on Site Collections which are not at the root. At least if you installed Reporting Services Add In Service Pack 1.
    Fun Fact: If you start the Report Builder on the Root Site Collection you can create a Report which works on any Site Collection. Its just the launch if the Report Builder which is broken.
    Our Solution was the SQL Server 2012 Service Pack 1 Cumulative Update 8 which fixed the Problem.
    You can request a download here: http://support.microsoft.com/kb/2917531
    Select the "2012_SP1_RSShrPnt_CU8_2917531_11_0_3401_x64" Fix and install it on every SharePoint Server in your Farm.

  • SP 2013 Designer Workflow problems retrieving data from Web Service

    Hi all,
    I am creating a SharePoint 2013 Designer Workflow, and I am having trouble retrieving data from a web service. The web service URL is
    http://services.odata.org/V2/Northwind/Northwind.svc/Customers and the problem I am having is with the SharePoint Designer Workflow “Call HTTP Web Service” action URL. The URL I am
    having problems with is shown below:
    http://services.odata.org/V2/Northwind/Northwind.svc/Customers('[%Current Item:Customer ID%]')?$format=json&$select=CustomerID,CompanyName,ContactName,ContactTitle,Address,City,PostalCode,Country,Phone,Fax
    or
    http://services.odata.org/V2/Northwind/Northwind.svc/Customers('[%Current Item:Customer ID%]')?$select=CustomerID,CompanyName,ContactName,ContactTitle,Address,City,PostalCode,Country,Phone,Fax&$format=json
    The SharePoint 2013 Designer workflow works OK if I try to retrieve two items like "CompanyName" and "ContactName", but when I try to retrieve three or more items the workflow doesn’t work it just pauses
    with no error message. The URL that works OK is shown below:
    http://services.odata.org/V2/Northwind/Northwind.svc/Customers('[%Current Item:Customer ID%]')?$format=json&$select=CompanyName,ContactName
    or
    http://services.odata.org/V2/Northwind/Northwind.svc/Customers('[%Current Item:Customer ID%]')?$select=CompanyName,ContactName&$format=json
    Does anyone know why I cannot retrieve more than two items from a web server? Am I making a mistake with the URL?
    I hope you can
    Colin

    Hi Amit,
    According to your description, my understanding is that you want to approve workflow task using web service in SharePoint 2013.
    For troubleshooting this issue, please provide the more detailed code.
    Here are some similar posts, please check if they are useful:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/b999a417-dce3-4590-9173-89aea91f23a3/complete-workflow-after-approving-all-tasks?forum=sharepointdevelopment
    http://www.sharepointblog.in/2013/07/programmatically-approvereject-task-in.html
    http://aarebrot.net/blog/2011/10/how-sloppiness-and-spworkflowtask-altertask-could-inadvertantly-lock-your-workflow-task/
    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 Configuration Wizard Missing Components after Install ServicePack 1

    Hello,
    today we have installed SharePoint Service Pack 1 for SharePoint Server 2013 inclusive Service Pack 1 for all language packs (we used the new released Service Packs).
    Our SharePoint Environment has only one SharePoint Server.
    Many
    language packs
    are
    installed
    on
    this
    server.
    If we try to run the configuration wizard through the GUI, then we get the following error:
    If we try to run "psconfig -cmd upgrade -inplace b2b -wait" then we get also an error:
    SharePoint Products Configuration Wizard version 15.0.4569.1503. Copyright (C) Microsoft Corporation 2012. All rights reserved.
    The upgrade command is invalid or a failure has been encountered.
    The server farm will not work with missing installs. Add "-cmd installcheck -noinstallcheck" to the command-line to ignore this warning.
    The following is missing on :
    Service Pack 1 for Microsoft SharePoint Server 2013 Language Pack (KB2880554) 64-Bit Edition
    Service Pack 1 for Microsoft SharePoint Server 2013 (KB2880552) 64-Bit Edition
    Service Pack 1 for Microsoft SharePoint Server 2013 Language Pack (KB2880554) 64-Bit Edition
    Service Pack 1 for Microsoft SharePoint Server 2013 (KB2880552) 64-Bit Edition
    Service Pack 1 for Microsoft SharePoint Server 2013 (KB2880552) 64-Bit Edition
    Service Pack 1 for Microsoft SharePoint Server 2013 (KB2880552) 64-Bit Edition
    We checked the Installation in "Programm and Features", result see below:
    Next step we run the PowerShell command: Get-SPProduct -local, result see below:
    ProductName                                                                          
    Required Missing   Servers   
    Language Pack for SharePoint 2013  - Bulgarian/български                              True              
    {ServerName, }
    Language Pack for SharePoint 2013  - Croatian/Hrvatski                                True              
    {ServerName, }
    Language Pack for SharePoint 2013  - Romanian/Română                                 
    True               {ServerName, }
    Language Pack for SharePoint 2013  - Thai/ไทย                                        
             True               {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Chinese (PRC)/中文(简体)    True               {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Chinese (Taiwan)/中文 (繁體)   True               {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Czech/čeština                 True              
    {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Danish/dansk                  True              
    {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Dutch/Nederlands              True               {ServerName,
    Language Pack for SharePoint and Project Server 2013  - Finnish/suomi                 True              
    {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - French/Français               True               {ServerName,
    Language Pack for SharePoint and Project Server 2013  - German/Deutsch                True              
    {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Greek/Ελληνικά                True              
    {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Hebrew עברית                  True              
    {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Hungarian/magyar              True               {ServerName,
    Language Pack for SharePoint and Project Server 2013  - Italian/Italiano              True               {ServerName,
    Language Pack for SharePoint and Project Server 2013  - Japanese/日本語      True               {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Korean/한국어                    True              
    {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Norwegian/norsk               True               {ServerName,
    Language Pack for SharePoint and Project Server 2013  - Polish/Polski                 True              
    {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Portuguese/Português          True               {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Portuguese/Português (Brasil) True               {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Russian/русский               True               {ServerName,
    Language Pack for SharePoint and Project Server 2013  - Slovak/Slovenčina             True               {ServerName,
    Language Pack for SharePoint and Project Server 2013  - Spanish/Español               True               {ServerName,
    Language Pack for SharePoint and Project Server 2013  - Swedish/svenska               True               {ServerName,
    Language Pack for SharePoint and Project Server 2013  - Turkish/Türkçe                True              
    {ServerName, }
    Language Pack for SharePoint and Project Server 2013  - Ukrainian/Українська          True               {ServerName, }
    Microsoft SharePoint Server 2013                                                     
    True               {ServerName, }
    What's the mistake?
    Why we can't run the configuration wizard?
    Has anyone answers?
    Thanks a lot.
    Regards Mario

    try to run the below command on all server in the farm and then run the config wizard
    Get-SPProduct -Local
    Above command basically update the product information into the configuration database. Read this blog from the Trevor.
    http://thesharepointfarm.com/2013/12/the-magic-of-get-spproduct-local/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • SharePoint 2013 Add Author image in default view of blog post

    Hi, 
    How to add Author Image in the Default view of SharePoint 2013 blog site. 
    Thanks
    ram

    Hi  Ram,
    According to your description, my understanding is that you want to display author picture in SharePoint blog.
    In my test, we can achieve the demand as following steps:
    Go to the blog site ->Site Actions -> View All Site Content ->Posts.
    In the Posts list, go to List  Settings-> click Created By column  in the Columns section.
    In Additional Column Settings,  select
    Name (with picture) or Name (with picture and details) for Show field.
    Reference:
    https://social.technet.microsoft.com/Forums/en-US/0d2fd27b-c96e-4c24-a1c8-e415969693bd/authors-image-on-blog-posts?forum=sharepointcustomizationpreviou
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How does Sharepoint 2013 Server farm using BLOB data, Hyper-V with virtual machines storing the BLOB data?

    Hello Community
        A Sharepoint 2013 Server farm created on a physical server
    stores it's documents in SQL Server according to how SQL Server is setup.
        If a Sharepoint 2013 Server farm is using Hyper-V and Virtual machines
    how is BLOB data stored ?  
        Thank you
        Shabeaut

    Are you looking to use Remote Blob Storage? or RBS of SQL with SP?
    It is going to be same way as it is configured for physical server.
    Thanks, Ashish | Please mark a post helpful/answer if it is helpful or answer your query.

  • Empty Data View Web Part

    I am using sharepoint Designer 2013 with SP2013,
    When I create a webpart page and insert a dataview to show data from a list in the site. It only shows a blank web page(Only the page name and nothing else). 
    I tried differnt data source but all have same result.
    Can anyone help?
    Thanks in advance.

    Maybe you can use this tutorial from microsoft:
    Tutorial link
    This can help too:  Link1 and
    Link2
    Hope this help.
    Best regards.

Maybe you are looking for

  • Problem with Sample Application

    I downloaded the source code for the PhotoViewer sample app. When I open the project in Flex 2 Builder four(4) instances of an error appear : "Unable to resolve a class for ResourceBundle: strings" I googled and found a suggestion to "clean" the proj

  • My mini suddenly won't turn off

    I'm not sure if I accidentally splashed a teeny bit of water on it (ugh!!) but tonight I can't get it to work right. It won't turn off when I push the off button and it seems to haphazardly go from "music" to "songs" and is just not working correctly

  • Blaster X-Fi Xtreme Audio Notebook will not work in just any Notebo

    This is an email I just sent to Creative support. It reads as follows : Dear Sirs or Madam: I have been a Creative user ever since I've been using computers. Recently I visited your website in search of a better sound card for my laptop as I work in

  • All jpgs open in elements 4.0

    I did a computer restore and reinstalled  Photoshop Elements 4.0  Every jpg from all my folders now opens in elements. I have uninstalled and reinstalled Elements multiple times trying to correct the problem with no results. TIA

  • TS1456 HELP! Can I exit iPod in recovery mode WITHOUT RESTORING?

    My iPod touch 4th gen is in recovery mode - how do i get it out WITHOUT RESTORING? Don't want to lose lecture notes n photos. (They're not backed-up, but apparently they'll not be erased by the restore. Could I still access them? The iPod shows up in