Search

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

Matching Posts

  • Re: LoginView - set focus on the first control

    Hi all! I had the same problem issue, but I'll guess I found a more elegant solution, so therefore I want to share it with you ....! Source: http://www.west-wind.com/Weblog/posts/5127.aspx My solution public static Control FindControlRecursive(Control Root, string Id) { if (Root.ID == Id) return Root; foreach (Control Ctl in Root.Controls) { Control FoundCtl = FindControlRecursive(Ctl, Id); if (FoundCtl != null) return FoundCtl; } return null; } protected void Page_Load(object sender, EventArgs
    Posted to Security (Forum) by WestHam on 8/5/2009
  • Re: Nothing happens when trying to update data in gridview using linq, asp.net and sql server 2005

    can it be so simpelt att du saknar/missing primärnyckel/primarykey. You need to have a primarykey Johan http://www.helheten.net
    Posted to Data Presentation Controls (Forum) by WestHam on 7/25/2009
  • Re: IEnumerable<Table>

    Use LinqToSQL, read ScottGu´s tips and tricks serie!! http://weblogs.asp.net/scottgu/pages/ASP.NET-2.0-Tips_2C00_-Tricks_2C00_-Recipes-and-Gotchas.aspx YourDataContext db = new YourDataContext(); DroppDownList_1.DataSoutce= db.yourTables.Select( x=>x.yourTableFieldName).ToList(); DroppDownList_1.DataBind(); OR DroppDownList_1.DataSoutce= new YourLinqDataContext().yourTables.Select( x=>x.yourTableFieldName).ToList(); DroppDownList_1.DataBind(); OR YourDataContext db = new YourDataContext();
  • Re: Configure a ATLAS website in IIS

    Have got any new ideeas, because I am in the same situation... Johan www.helheten.net
  • Re: DotNetNuke installation at "Gate.com"

    Thanks for answering.. Interesting, when I signed on for Gate.com, I also saw an old dnn-version (4.0.2), approximately 6-7 weeks after dnn 431 was released, and I thought this may be a bad sign and should not give them a try, but as you know “money talks”, so I give them a shoot. Of course did I tell them, that they had an old dnn-version, but frankly I haven’t got any answer on this……..another sign! So I uploaded the latest dnn version. It took me at least 3-4 effective days to setup a working
    Posted to Getting Started (Forum) by WestHam on 7/18/2006
  • Re: DotNetNuke installation at "Gate.com"

    Thanks I will check that out (PowerDnn). Today I got my dnn installation completed at "Gate.com", now I am going to test it.
    Posted to Getting Started (Forum) by WestHam on 7/14/2006
  • DotNetNuke installation at "Gate.com"

    Question, does anyone of you use "Gate.com" as web portal -host? I have problem with my db_user rights and I don’t know how to fix it. Can't give my db_user db_owner rights..... Gate.com provides an old dnn version so I uploaded a new version, but I have not managed it, to work? So the question is, is there any working dnn-portal at gate.com? Below is my error message ------- Installing DotNetNuke Version: 04.03.02 Installation Status Report 00:00:00.015 - Installing Version: 3.1.0 00:00:00.015
    Posted to Getting Started (Forum) by WestHam on 7/13/2006
  • Sv: Re: Sv: Re: Sv: Re: DNN3.0.12 Sitelog Enhancement Request

    I think I came up with a much better solution, 1) Go to host, SQL 2)copy the underlined text "< delete from SiteLog where SiteLog.UserId='1' >" 3) run take next , delete from SiteLog where SiteLog.UserId='2' wola..... no admin or host traces in the statistics
    Posted to Core Framework (Forum) by WestHam on 1/15/2006
  • Sv: Re: Sv: Re: Sv: Re: DNN3.0.12 Sitelog Enhancement Request

    I missed to include the brackets in prev post, you know (cut and paste error, sbs) ( NOT ((SiteLog.UserId='1') or (SiteLog.UserId='2')). I will try your suggestion, but I have also noticed I miss several of clicks from the Portal, and it also seams to bee the last hour is missing. I thought I had pull off every cacheing stuff, and that it should write direct to the database, but obvious not.
    Posted to Core Framework (Forum) by WestHam on 1/15/2006
  • Sv: Re: Sv: Re: DNN3.0.12 Sitelog Enhancement Request

    I want to exclude both host and admin from all reports, and started to modify a new StoreProcedure and also added a report in lists and gave it number 13. But here all succes ends.. No matter how much I try, I can get it work, but on the other hand I'am not an sql person, but I thought I knew some Booelan logic, but dosen't seams to help me either. I want to put in " SiteLog.UserId='1' (admin I'll guess) and " SiteLog.UserId='2' ( host) But where, so it will Work..... ---------------------------
    Posted to Core Framework (Forum) by WestHam on 1/15/2006
Page 1 of 7 (65 items) 1 2 3 4 5 Next > ... Last »