Search

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

Matching Posts

  • Aspx design presentation layer

    Hi, I have 5 controls that I need to use in my aspx page (calendar,listview..etc) and I need put them in a specific position on a page. I dont want to use a table\panel and I am not a web designer. What other tools I could use to make my web page look professional (presntation layer)? Structure the controls... A good tutorial would help too. Thank you.
    Posted to Web Forms (Forum) by IMBack on 11/25/2009
  • Re: C# LINQ + ListView (ddl)

    I put a breakpoint at my var items = ... statement. At the debug mode when it gets to the berakpoint (highlights in yellow all the statement) and I move the mouse over the var items. the Items shows null. Dont see the generated sql script. Please advice. Thanks,
  • Re: AutoCompleteExtender css style

    I am not sure those links you provided is what I require. Could you please provide the code and to what css class I need to apply to accomplish my task. Thank u.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by IMBack on 11/24/2009
  • Re: C# LINQ + ListView (ddl)

    Hi Wencui Qian What do you mean by.. " [quote user="Wencui Qian - MSFT"] ...you can try to debug it and get the generated SQL script for that LINQ to SQL query if you like it. Then, you can judge whether it's what you want. Thanks. [/quote] Do you mean, create a sql script and run and see if the result is the same? Thanks
  • AutoCompleteExtender css style

    Hi I am working with AutoCompleteExtender & Textbox control pointed to the country code. Code works. Css Style question: When the user starts typing, ie. Ca in the textbox (it finds all the countries that contains 'ca' chracters. I want the 'ca' be bolded. so ie. finds Country Canada, I want in the list to be Ca nada. want to make it bold, different color, font. What css class should I use? Please provide an example. Thank you
    Posted to ASP.NET AJAX Control Toolkit (Forum) by IMBack on 11/23/2009
  • C# LINQ + ListView (ddl)

    Hi, Have 2 tables: Table #1 tblMembers (columns) Id From Minutes Id To Minutes Id Table #2 tblMinutes (columns) Id, Value Ie. 1 – 00 2 – 05 3 - 10 ..etc I am using a ListView and LINQ to do this: The below code works fine. But I don’t know if it is the correct way of doing it. Is the code efficient way? Performance?… I.e At PageLoad I call the Bind method: private void Bind() { LINQMembersDataContext context = new LINQMembersDataContext(); var items = from item in context.members join m in context
  • Re: SqlDataSource V.S. LinqDataSource

    Hi, Could you please explain what it means: " overall design of the application ", better performace? How is ObjectDataSource is better than LinqDataSource and SqlDataSource . Please explain with examples, Thank you.
  • Re: Update Table in database using LINQ

    Hi David, Sorry for confusing.. I wil try to explain again what I am trying to accomplish: I receive a string [] ids (everytime number of ids could be different) i.e 9789079037, 9382983, 9839283 ... and I want to run a query to update 'date_updated' filed to the current data in the database where the ids record is found. I hope it is clear now, Thanks for your help
  • Re: C# Strongly typed dataset question

    Thanks for the link, I tried...(using Sql 7) still having difficulties, maybe because I am new to this topic. If it is not too much, Could you help me create that example and let me know what solution option you used from the link. Thank you.
  • Re: Update Table in database using LINQ

    Thanks for the link. Still confused how to add my string id [] to the query. So it will only grab the ids I need. Ie. Modified the ie. from the link you posted: NorthwindDataContext northwind = new NorthwindDataContext(); var getProducts = from p in northwind.products where //--> How do I include the string ids []I need to retrieve select p; foreach(product product in getProducts){ product.data_updated = Data.Now(); } northwind.SubmitChanges(); Thank you for your help
Page 1 of 41 (402 items) 1 2 3 4 5 Next > ... Last »