Search

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

Matching Posts

  • Re: IsInRole throws The trust relationship between this workstation and the primary domain failed

    [quote user="srikanth2003"]Is the user ? Are you using Windows Authentication/Forms authentication? Are you using AuthenticatinoCookie?[/quote] Yes! User is authenticated. I From VS2008 I've runned application with Windows Authentication (with identity impersonate = true). Cassini web server (when I debug my application) as I know uses current Windows Account. But I did it on IIS with Win Authentication - and it was the same result. :-( No cookies used.
    Posted to Security (Forum) by Balyk on 8/28/2009
  • IsInRole throws The trust relationship between this workstation and the primary domain failed

    I've installed Win7 Ent - clear new instance (I think at Vista will be the same). Include comp into my domain. Install VS2008. The problem is in running my old ASP.NET application that is uses Windows Authentication. IsInRole method throws exception - "The trust relationship between this workstation and the primary domain failed." when I want to check some domain role fo my app user. My domain account has an Administrator priveleges at my comp and in my domain. I was searched by google
    Posted to Security (Forum) by Balyk on 8/27/2009
    Filed under: ASP.NET, windows 7, Secuity
  • Can't organize confirm case

    At client side i was maked next ajaxed code function ajaxEnableView(object, id) { if (confirm("Delete this record ?")==true) { $.post("Delete/" + id, null, OnEditComplete); } } but $.post command executed always and not depended on if and confirm! What's wrong? how can I make execute my $.post by condition?
    Posted to ASP.NET AJAX Discussion and Suggestions (Forum) by Balyk on 6/10/2009
    Filed under: ajax
  • Re: Filter data by multiple values

    Thank U, Steve as always. I'll watching Preview 3 code...
    Posted to ASP.NET Dynamic Data (Forum) by Balyk on 4/21/2009
  • Re: Filter data by multiple values

    [quote user="sjnaughton"] 1. Preview 3 wich you can find on codeplex ASP.NET Dynamic Data Preview 3 [/quote] How exactly it can be possible in Preview 3 (can you give a piece of code)? [quote user="sjnaughton"] 2. Josh Heyes' Dynamic Data Filtering [/quote] I don't need visual controls here - I would like a code on _Load or _Init event on my custom page.
    Posted to ASP.NET Dynamic Data (Forum) by Balyk on 4/21/2009
  • Filter data by multiple values

    I have some table SomeTable(int id, string name). I have a custom page for viewing it. I need filter my table by default on a values from another table (or collection), for example, AccessedIDs(int id). if I use GridDataSource.WhereParameters I can filter only by one value on one field - how can I filter my table by multiple values from my storage?
    Posted to ASP.NET Dynamic Data (Forum) by Balyk on 4/21/2009
    Filed under: Dynamic Data, Filtering
  • Re: Filter Data in Filters

    [quote user="sjnaughton"] I've been asked several time so I will when I get the time or someone pays me to maybe in the next project I get. [/quote] So I will be waiting next topic at C# Bits ;-)
    Posted to ASP.NET Dynamic Data (Forum) by Balyk on 4/16/2009
  • Re: Filter Data in Filters

    thank you, Steve, for targeting. I make a copy of Cascade filter (CascadeFiltered) with my changes in Page_Init ... string sDivisionID = HttpContext.Current.Request[ "DivisionID" ]; DivisionID = int .Parse(sDivisionID); IQueryable<TaskGroup> data = (IQueryable)parentTable.GetQuery(context); var filteredData = from d in data where d.DivisionID == DivisionID select d; foreach (var row in filteredData) { parentDropDown.Items.Add( ... } .... and in parentDropDown_SelectedIndexChanged
    Posted to ASP.NET Dynamic Data (Forum) by Balyk on 4/16/2009
    Filed under: Dynamic Data, Filtering
  • Filter Data in Filters

    I have some database with next structure (part of it) TaskType (int TaskTypeID (Primary Key), string TaskTypeName, int DivisionID) TaskList (int TaskListID (Primary Key), string TaskName, int TaskTypeID (FK to TaskType.TaskTypeID ), int DivisionID ) I have DynamicData project + I use filters from DynamicDataFutures project. My goal - enable data manipulation only with filter on DivisionID (because User depend on DivisionID) So when User select List action of TaskList table there is a filter-combobox
    Posted to ASP.NET Dynamic Data (Forum) by Balyk on 4/16/2009
    Filed under: Dynamic Data, Filtering
  • Dynamically loading controls to target area

    I want to realize dynamically loading controls in next scenario: in some *.aspx I have some target areas (for example "leftPanel", "rightPanel"). I have some config storage (xml, db, ...) in wich I store my controls settings. (for example <control name="control1.ascx" place="leftPanel" .../><control name="control2.ascx" place="rightPanel" .../>).). How can I dynamically load my controls on my page? I searched for Internet but
    Posted to ASP.NET MVC (Forum) by Balyk on 4/14/2009
    Filed under: ASP.NET MVC, Dynamic Controls
Page 1 of 4 (31 items) 1 2 3 4 Next >