Search

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

Matching Posts

  • Re: RootNodeTemplate being overriden by CurrentNodeTemplate

    I know this is a year old but here is how I fixed it protected void Page_Load( object sender, EventArgs e) { if (!Page.IsPostBack) { // Force the root template when current == root if ( SiteMap .CurrentNode == SiteMap .RootNode) siteMapPath.CurrentNodeTemplate = siteMapPath.RootNodeTemplate; } }
  • Re: ajax tab panel/tab container buggy

    Did you solve the problem with the gap in the tab header? I noticed the same thing when I copied the GIFs from the toolkit sample. I think I found a solution but I don't understand why the gap happens when I am using the same CSS as the sample. I changed the following line: .ajax__tab_tectrack .ajax__tab_outer { padding-right :4 px ; background : url('/Graphics/Tabs/tab-right.gif') no-repeat right ; height : 21px ;} to .ajax__tab_tectrack .ajax__tab_outer { padding-right : 0px ; background
  • Re: Why are expressions disabled on DataTables generated by TableAdapters?

    Thanks for your reply Kevin. I apologize I was not clear in my original post. I was actually quoting someone else. Your answer is correct, when initializing a DataTable you can pass it a 'true' parameter and it will initialize the expressions. However, my problem is actually with a strongly-typed DataSet. I am calling a TableAdapter method called "GetJob()" which is being automatically generated by the Designer. The GetJob() method returns a DataTable, but it does not initialize expressions on the
  • Why are expressions disabled on DataTables?

    Hi there, I have created a dataset with two tables in it.One of those tables has an expression that calcs a percentage based on two other columns. However when i ran my app the UI was displaying (null) for the expression column. After digging into the code I realised the designer automatically prevents expressions from being loaded for a particular table if you declare an instance of the table rather than an instance of the dataset as below: <System.Diagnostics.DebuggerNonUserCodeAttribute()>
  • Re: Windows 2003 Event log ASP.Net 1315. What does that mean?

    Ok, I guess the cause of my problem was just not definining the machineKey in my machine.config file. Everytime my worker process would recycle the authentication cookie would become invalid. I assume ASP.NET was generating new keys? I entered both validation and decryption keys into my machine.config file and I think the problem is solved.
    Posted to DotNetNuke (Forum) by JeremyLundy on 3/31/2006
  • Re: Windows 2003 Event log ASP.Net 1315. What does that mean?

    I am having this problem on a Windows 2003 Server. I have two ASP.NET 2.0 sites using forms authentication. I also have some ASP.NET 1.1 pages but they do not use forms authentication so I don't think they are doing anything to the cookies. I have set the cookie timeout to 365 days but it seems to timeout after about 20 minutes and I get "The ticket supplied was invalid" in the application log. It doesn't seem to matter if I am accessing the 1.1 pages. I do have session timeout set to 20 minutes
    Posted to DotNetNuke (Forum) by JeremyLundy on 3/31/2006
Page 1 of 1 (6 items)