Search

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

Matching Posts

  • C # DateTime

    Hi All, What is the easy way to get Monday date of current week or previous week in c#. Thanks,
    Posted to Getting Started (Forum) by usplimpatt on 12/21/2009
  • ModalPopupExtender

    Hi All, Here is a simple problem yet taking forever to get it to work. :) I have a page that takes long time for initial load. So i have ModalPopupExtender set up to show "Loading..." message. Working fine. :) Now how do i detect page is done loading and close the message box. i tried window.onload javascript functon but get null error. Thanks all.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by usplimpatt on 11/11/2009
  • asp.net ajax model popup with ASP:FormView

    Hi All, I have ObjectDataSource bound to GridView for Insert, Update , Delete. All works fine. My only problem is for Insert i am using ASP:FormView inside asp.net ajax model popup content. the insert and cancel options does not respond to anything when i use as model. But if i remove model, all works well. Any sample or suggestions would be very helpful thanks.
  • Return DataTable

    Hi all, I have the following working: // THIS WORKS public List<StoredProcedure1Result> GetSelect() { using (DataClasses1DataContext ct = new DataClasses1DataContext()) { return (from t in ct.StoredProcedure1() select t).ToList<StoredProcedure1Result>(); } } My question is how do i return DataTable instead? I'm having casting issue public DataTable GetSelect() { using (DataClasses1DataContext ct = new DataClasses1DataContext()) { var p = select s in ct.StoredProcedure1() select s;
    Posted to Getting Started (Forum) by usplimpatt on 11/2/2009
  • Slider Dilemma

    Hi All, Please help if you can. I'm using asp.net ajax slider control. When the slider is moved, values is changed in TextBox2. Works so far :) My problems is i need to show the final calcuated value on TextBox3 (calculated based on TextBox2 value) on client side. I tried using onchange JS but it does not trigger since TextBox2 value is being changed by Slider and can not add onchange function on Slider itself. Please let me know if my Explanation of confusing. <asp:TextBox ID="TextBox1"
    Posted to ASP.NET AJAX Control Toolkit (Forum) by usplimpatt on 10/27/2009
  • Dynamic Button Wrap

    Hi All, I'm dynamically adding button on a GridView _RowDataBound event something like e.Row.Cells[0].Controls.Add(CustomExecuteButton()); Works well. :) Next challange is i need to wrap it around HTML SPAN tag. Since Controls.Add does not take string, how do i wrap it with SPAN. private Button CustomExecuteButton(){.....}
    Posted to Data Presentation Controls (Forum) by usplimpatt on 10/26/2009
  • LINQ DataTable

    Hi All, Is it possible to run LINQ query once after the DataTable has alreay been populated? basically i need to quick way to do something like (where FK='101') using linq from sample DataTable below Pk Fk Item -------------------- 1 101 aaa 2 101 bbb 3 102 ccc 4 102 ddd 5 102 eee 6 103 fff 7 103 ggg 8 103 hhh ...........where Fk='101' Thank you all.
  • WCF REST 2 ( authorization header)

    Hi All, This may NOT be the right area for this question but if know the answer, please answer. I'm experimenting with WCF Rest 2 API. Figured out most of the auth. mechanism except how do i set a uthorization header from the consuming client ? HttpClient http = new HttpClient ( "....." ); //http.TransportSettings.Credentials = new NetworkCredential("******", "******"); -- this is fine , good , works ;) but i also need to set HttpRequestHeader (But how, is my question
    Posted to XML Web Services (Forum) by usplimpatt on 10/15/2009
  • Re: ObjectDataSource giving headaches ;)

    Even CodeBehind is not helping. GridView1's selected Index change event does not have access to GridView2's ObjectDatasource's e.parameter.add(). GridView2's ObjectDatasource's _selecting event does not have access to Gridview1's selected index. See that's why i have a headaches ;) <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataSourceID="ObjectDataSource1" DataKeyNames="camID"> <Columns>
Page 1 of 6 (59 items) 1 2 3 4 5 Next > ... Last »