Search

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

Matching Posts

  • Re: Custom roleprovider caching.

    Thanx, this is the way to go.
    Posted to Security (Forum) by denman on 4/11/2008
  • Re: Linq to SQL rename an association in a dbml file

    Hi Wencui, this is not what I mean: Example: Table: Orders - OrderID - ShippingCustomerID - BillingCustomerID - etc. Table: Customers - CustomerID - Name - etc. 2 foreign keys between Orders and Customer. - One between Customers.CustomerID and Orders.ShippingCustomerID - One between Customers.CustomerID and Orders.BillingCustomerID When you drag/drop these two tables on the dbml designer, you can make the following link query: var query = from o in dc.Orders where o.Relation.RelationID = 1 where
  • How to make web application load faster in browser after build...

    Is there a way to make a web application load faster in the browser after a build? Whenever I build a web application, and want to test it in a web browser, it takes a 'long' time to initial load the newly build web application. Is there a way to make this faster? Every time I change a little bit of code, it takes more than 45 seconds to load the newly build web application.
    Posted to Web Forms (Forum) by denman on 4/11/2008
    Filed under: web site application browser load faster after build
  • Custom roleprovider caching.

    I'm using a cutom roleprovider to implement security in my asp.net c# web application. The custom role provider is in its own assembly. public class CustomRoleProvider : RoleProvider { public override string [] GetRolesForUser( string username) { string [] rolesForUser = null ; using (var dc = new MembershipDataContext()) { var roles = from p in dc.Persons join pr in dc.PersonRoles on p.PersonID equals pr.PersonID join r in dc.Roles on pr.RoleID equals r.RoleID join rp in dc.RolePermissions on
    Posted to Security (Forum) by denman on 4/8/2008
    Filed under: custom roleprovider cache caching
  • Linq to SQL rename an association in a dbml file

    Is there a way to rename a association in a dbml file in VS2008? When you have 2 foreign keys between 2 tables, you get 2 associoations with the names: 1 en 2... Example: Table with name Orders with two fields: ShippingCustomerID and BillingCustomerID Table with name Customers If there are 2 relations between these tables, the one is called: Orders_Customers1 and the other: Orders_Customers2. I want to change the names into: ShippingCustomer and BillingCustomer. So it's clear in my linq query
  • Editing a Word document that's in a solution results in automatically removal from the solution.

    For documentation purposes I add MS Word 2007 documents to the solution. So I can keep it with the solution in VSS. But, after checking the document out, and edit the document, it automatically is removed from the solution when I save the document (CTRL+S). So every time I change something in the document, I have to manually add it back to my solution. Is this a bug? Of can someone tell me the solution to this problem?
    Posted to Visual Studio 2008 (Forum) by denman on 1/31/2008
    Filed under: word solution remove
  • 1 UpdatePanelAnimationExtender on master page

    Is there a way to have one UpdatePanelAnimationExtender on a masterpage and use this extender throughout my WebApplication for all my updatepanels? I use a lot of Web User Controls with UpdatePanels on it, I want one UpdatePanelAnimationExtender. How do I set the TargetControlID of the one extender on the masterpage?
    Posted to ASP.NET AJAX Control Toolkit (Forum) by denman on 10/16/2007
    Filed under: UpdatePanelAnimationExtender masterpage targetcontrolid
  • Re: asp.net temp files? in my c:\ root drive

    Yes, i know where the temp asp.net files supposed to be. But my question is why they are in my c:\ root dir. (if the files are actually asp.net temp files)...
    Posted to Installation and Setup (Forum) by denman on 8/3/2007
  • asp.net temp files? in my c:\ root drive

    I have al lot (over 8000) files in my c:\ root drive. When i open these files with notepad, it looks like these are temp files from asp.net and iis 5.1. ==== first couple of lines of one of these files ==== HTTP/1.1 200 OK Server: Microsoft-IIS/5.1 X-Powered-By: ASP.NET Date: Fri, 03 Aug 2007 14:05:51 GMT Content-Type: text/css Accept-Ranges: bytes Last-Modified: Mon, 23 Jul 2007 10:09:12 GMT ETag: "6155508411cdc71:1d85" Content-Length: 1185 ===================================== Does anyone
    Posted to Installation and Setup (Forum) by denman on 8/3/2007
    Filed under: asp.net iis5.1 files temporary
  • Re: Automatically login during development (skop login page). asp.net c#

    This is the code I came up myself.... #if (DEBUG) // Only if the configuration is DEBUG. // Login as the developer specified in de config-file. string developer = ConfigurationItems.Developer; if (!string.IsNullOrEmpty(developer)) { FormsAuthentication.RedirectFromLoginPage(developer, false); } #endif
    Posted to Web Forms (Forum) by denman on 8/3/2007
Page 1 of 3 (26 items) 1 2 3 Next >