Search

You searched for the word(s): userid:619682

Matching Posts

  • Export Gridview to Excel, DateTime shown as Integer.

    Hello, I have a grid that I am exporting to Excel, on my machine it works ok, but on the customer it shows a DateTime column as an integer number like 33412, If I right click that date , format cells and then put date, it converts the number to the right date format. 1. I have no idea how to reproduce this error on my machine, but I need to solve it whatever it takes. Thank you!!! 1 public static void Export( string fileName, GridView gv, string nombreAdministrador, string nombrePlanta, string fecha
  • WCF services with windows integrated authenticatio

    Hello, This is my scenario I have a project with many webservices, currently it has anonymous and integrated enable. I need to disable Anonymous Acces I have a web application which uses all those services, but it doesnt use the autogenerated proxy. We use channelfactory this way [DataObjectMethod(DataObjectMethodType.Select, true)] public static Ent.ColeccionPlanta ConsultarPlantas( int idTipoProceso, string nombrePlanta, string jefePlanta, Nullable<bool> activo, int idEmpresa) { Ent.ColeccionPlanta
  • Re: custom sqlsitemapprovider and external links

    I still have the same error, I am creating the menu programatically because its a webpart. I pasted the code as you said. using System; using System.Runtime.InteropServices; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Serialization; using Microsoft.SharePoint; using Microsoft.SharePoint.WebControls; using Microsoft.SharePoint.WebPartPages; using System.ComponentModel; using System.Web; namespace Sura.WebParts { [Guid( "45f84569
  • Cannot find the specified user 'owner'. Cannot find the queue 'SqlQueryNotificationService

    Hello, I am trying to use sqlsitemap provider with caching enabled but I got this error., Please help Server Error in '/' Application. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Cannot find the specified user 'owner'. Cannot find the queue 'SqlQueryNotificationService-e3843816
  • ArgumentOutOfRangeException

    Hello. I am creating an ASP treeview or Menu programatically, And I got this strange error. The strange part is that the Code Executes with no Exceptions, I think the error is thrown when the treeview is rendered. First. The SQL Results: Title Descripcion ID Url Roles ParentId CategoryId DocumentLibrary Orden Visible Desabilitado Depth Soluciones para empresas Soluciones para empresas 63 NULL 1 0 1 0 0 using System; using System.Runtime.InteropServices; using System.Web.UI; using System.Web.UI.WebControls;
  • How to force SqlSiteMapPriver refresh its data.

    Hello. I am creating programatically an aspmenu, which its a webpart with custom properties. The problem is that when the user puts some info on the properties and click OK, the menu doesnt refresh, because I think its in Cache. In the BuildSiteMap method, it only executes these lines and it returns, and it never executes the Stored Procedure again until I execute IISRESET.EXE. I want to force the execution of the Stored Procedure. public override SiteMapNode BuildSiteMap() { lock (_lock) { // Return
  • Exception Details: System.ArgumentOutOfRangeException: on treeview.

    This is my menu webpart, Look at the Categoria property, its very strange if its Setup to 1 it works, if I setup to 2 it doesn work. Sorry for the long Code. using System; using System.Runtime.InteropServices; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Serialization; using Microsoft.SharePoint; using Microsoft.SharePoint.WebControls; using Microsoft.SharePoint.WebPartPages; using System.ComponentModel; using System.Web; namespace
  • Re: Pass a parameter to SqlSiteMapProvider

    This is my menu webpart, Look at the Categoria property, its very strange if its Setup to 1 it works, if I setup to 2 it doesn work. The error is below using System; using System.Runtime.InteropServices; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Serialization; using Microsoft.SharePoint; using Microsoft.SharePoint.WebControls; using Microsoft.SharePoint.WebPartPages; using System.ComponentModel; using System.Web; namespace Sura
  • Re: Pass a parameter to SqlSiteMapProvider

    Thanks for your answer, I am creating a Customizable Menu for sharepoint, its a webpart, and it must have some Design Properties and other Properties that are data related. For example, if the menu will be vertical or horizontal, If it will be treeview or aspMenu. And data related properties for example, will put a filter on the stored procedure that retrieves the menu. So, this question its because I wanted to set up some filters dinamically based on webpart custom properties Thanks
  • Pass a parameter to SqlSiteMapProvider

    Hello, I created a simple webpart for sharepoint, its very simple, I used the MSDN article from Sql sitemap provider. protected override void CreateChildControls() { SiteMapDataSource sds = new SiteMapDataSource(); sds.SiteMapProvider = "SqlSiteMapProvider" ; sds.ShowStartingNode = false ; System.Web.UI.WebControls.Menu aspMenu = new System.Web.UI.WebControls.Menu(); System.Web.UI.WebControls.TreeView treeview = new TreeView(); treeview.DataSource = sds; treeview.DataBind(); this .Controls
    Posted to Master Pages, Themes and Navigation Controls (Forum) by luisevalencia on 2/3/2009
    Filed under: sitemap menu tree view
Page 1 of 26 (255 items) 1 2 3 4 5 Next > ... Last »