Search

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

Matching Posts

  • Re: How I can get overall lowest cost

    Thank you very much for your sugestions. Let me search for math forums. If i found any answer, I will ping you
  • How I can get overall lowest cost

    Dear Experts I have problem in MS Access/SQL query. I have three database tables (1.Material 2. Suppliers 3. OFFERS ) OFFERS table contains different offers of suppliers for different materials like as OfferID Quantity UnitPrice DelTime Supplier Material 1 1 99 5 A Chair 2 3 90 5 A Chair 3 5 80 5 A Chair 4 1 95 5 B Chair 5 1 90 5 C Chair 6 3 85 5 C Chair 7 10 80 5 C Chair I want to get the supplier with overall lowest price for Chairs of quantity 14 The paper work for overall lowest price is given
  • Re: Ajax: ShowAll panel

    I have completed this task through code. Following code helped me. ///C# Code protected void btnShowAll_Click( object sender, EventArgs e) { if (btnShowAll.Text == "Show All" ) { foreach ( RepeaterItem item in Repeater1.Items) { AjaxControlToolkit. CollapsiblePanelExtender CollapsiblePanelExtender1 = (AjaxControlToolkit. CollapsiblePanelExtender )(item.FindControl( "CollapsiblePanelExtender1" )); CollapsiblePanelExtender1.Collapsed = false ; CollapsiblePanelExtender1.ClientState
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Qasimali84 on 11/23/2009
  • Ajax: ShowAll panel

    Dear Experts I have used CollapsiblePanelExtender with in repeater. Its default expand on item as it is set by default. I have a button to show all panels. When user click on this button. all panels should be expand. I am try for a days but in vain. My html code and code behind is given below. Please investigate my mistakes or suggest a better solutions for this task. < asp : Repeater ID ="Repeater1" runat ="server" OnItemDataBound = "Repeater1_ItemDataBound">
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Qasimali84 on 11/19/2009
    Filed under: Collapsible Panel
  • Re: Ajax: ShowAll panel

    Thank you very much for your reply. I have already visited this video. My requirements are little bit different. I want to show all collapsible panal on button click. When user click on "Show All" button. All panel should be expand. Html code for show all button is given below < asp : Button ID ="btnShowAll" runat ="server" Text ="Show All" onclick ="btnShowAll_Click" /> The code behind what I am trying is given below, but it does not work protected
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Qasimali84 on 11/19/2009
  • Re: Filtering Data for Gridview based on Users

    query = from c in contracts where c.Users.Username == UsrName select c; This query is not allowed as Users is an EntityCollection for each Contract Waiting for reply please.
  • Re: Filtering Data for Gridview based on Users

    The complete code for this function is given as private ObjectQuery <DynamicForms.Data. Contract > FilterContracts() { DataEntities System.Data.Objects. DynamicForms.Data. data = new DataEntities (); ObjectQuery <DynamicForms.Data. Contract > contracts = data.Contracts.Include( "Client" ).Include( "Users" ); var query = contracts; string UsrName = Page.User.Identity.Name.ToString(); User user= ( from u in data.Users where u.Username == UsrName select u).First(); if
  • Re: Filtering Data for Gridview based on Users

    Thank You very much The following query worked for me. query = user.Contracts.CreateSourceQuery().Include( "Users" );
  • Re: Filtering Data for Gridview based on Users

    Thanks, I have implemented this code and got following error 'Username' is not a member of 'Transient.collection[DataModel.User(Nullable=True,DefaultValue=)]'. To extract properties out of collections, you must use a sub-query to iterate over the collection
  • Re: Filtering Data for Gridview based on Users

    Thanks for reply. I have used users instead of user as query = query.Where( "it.Users.Username = " + UsrName); but recieved same error like above. I am new to Entity framework. I am trying to get this functionality from last three days. Your other ideas are also welcome. Keep in mind filtering, sorting and paging please
Page 1 of 6 (52 items) 1 2 3 4 5 Next > ... Last »