Ask for help

In February will be MVP meeting at Microsoft location. Being myself an MVP (https://mvp.support.microsoft.com/profile/Andrei.Ignat) I wish to go to Seattle . I wish to speak directly with the teams that bring me the tool that I use for living. But the costs of the plane is too much for me. So I ask you,dear reader , if you can, to send me any amount you dispose of.

The target is to have the amount of 1000 USD for the plane ticket. If every reader could donate 1 USD , in a few months I will have my plane ticket.

Thanks!

My Paypal account is ignatandrei@yahoo.com

Comments (18)

  • #1 by Joey Froelich at December 7th, 2010

    Reply | Quote

    I’m truly enjoying reading your nicely published articles. It appears like you invest a great deal of effort and time on your blog. I’ve bookmarked it and I’m searching forward to reading new content articles. Maintain up the great work!

  • #2 by Asp.net Url Rewriting at December 7th, 2010

    Reply | Quote

    Dear Sir,
    I have design asp.net website in which all the menu are dynamic which comes from database.
    On on each menu item i have passed menu id for loading content of page but i want to show user pagename.htm for each menu
    how i can rewrite url in asp.net 3.5
    Please help

    Thanks
    Shashank Patel

  • #3 by Andrei Ignat at December 7th, 2010

    Reply | Quote

    Dear Mr. Patel
    If you want answer for free, then please post your question on ASP.NET forums(www.asp.net).
    I do take private questions – but I take money for my private time,

  • #4 by Vin at June 11th, 2011

    Reply | Quote

    Hi, I need help with this issue I have posted on asp.net forums. I want quick and private time of yours. I can pay if you can provide solution quicker. please let me know. Vin

  • #5 by Amit Sachan at August 8th, 2011

    Reply | Quote

    hello sir…..
    i want to make a page in which i create a folder,which save in a DB,and after that i want to add some files in that folder.In that page i can make many folders and can store many files in it….how can i do this..can i create session for create folder or some other thing…please help me sir..
    thank you!

    • #6 by Andrei Ignat at August 9th, 2011

      Reply | Quote

      And what did you try and did not work?

  • #7 by mark marty at August 10th, 2011

    Reply | Quote

    i am looking for a top tier asp.net developer, a referral would be appreciated.
    thanks,
    mark marty
    mmarty2445@aol.com
    970-593-0001

  • #8 by meysam at September 20th, 2011

    Reply | Quote

    hello Andrei!
    i have use dropdownlist in “create form”
    please help me
    thanks in advance.

    • #9 by Andrei Ignat at September 20th, 2011

      Reply | Quote

      How can I help you?

  • #10 by Farhad at October 28th, 2011

    Reply | Quote

    Dear Sir,

    Hope you are well.
    I’m going to create a dynamic template with ASP.NET using C# and ajax.
    The template page is consist of three separate parts.
    First main menu which is located at the top bar, second sub-menu which is located at the left side bar, and third part is right side of the side bar which is show the details.
    The process is: If you click on any item of the top main menu, the left side bar should refresh only not all the page and show all the sub-menus.
    Then once you choose any of the sub-menus, the right side should only refresh and show the details of the sub-menu.
    these three part could be frames or using other method.
    The main point is I don’t want to refresh all page by each menu selection.
    Could you please guide me step by step to create this template?
    or send me a sample page which is include 3 separate part using jQuery and updatePanel.(because i have no idea about jQuary but i know it is one of the best way to get ride of this problem)
    Appreciate your consideration.

    Best Regards,
    Farhad

    • #11 by Andrei Ignat at October 30th, 2011

      Reply | Quote

      Dear Farhad,
      It will take me more than 1 hour to make a concrete example commented well. Then more than 2 hours to explain to you (since you admitted you are a beginner).
      Then you will ask for specific help 3 hours….
      How you want to reward me for this.time ?

  • #12 by michelle at November 20th, 2011

    Reply | Quote

    hi.. i need your help.. i’m new in jquery..please help me.. how can I get the value of the text box in the modal dialog and insert it in mysql using php.. thanks..

  • #13 by michelle at November 20th, 2011

    Reply | Quote

    by the way here is the code that i used..

    $(function() {
    $( “#dialog” ).dialog({
    autoOpen: false,
    height: 300,
    width: 350,
    modal: true,
    });
    $( “#create” )
    .button()
    .click(function() {
    $( “#dialog” ).dialog(“open”);
    var year=getElementById.value(select);
    document.write(year);

    });

    $( “#button” )
    .button()
    .click(function() {
    $( “#dialog” ).dialog(“close”);
    });

    });

    Year:

    Select Year
    First Year
    Second Year
    Third Year
    Fourth Year

    Section:

    Submit

    Create new user

    —thanks—

    • #14 by Andrei Ignat at November 20th, 2011

      Reply | Quote

      Hello Michelle
      I am an .NET guy , not PHP. And, although javascript does not have server code and can be used from both, you should seek help from PHP forums, where you will develop further questions.

  • #15 by yadagiri at February 13th, 2012

    Reply | Quote

    hi sir can u help me how to update the details fro gridview control

    Exception Details: System.Data.SqlClient.SqlException: Procedure or function ‘UpdateCust’ expects parameter ‘@Address’, which was not supplied.

    Source Error:

    protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {
    string id = GridView1.DataKeys[e.RowIndex].Value.ToString();
    GridViewRow row = GridView1.Rows[e.RowIndex];

    TextBox TUname = (TextBox)row.FindControl(“TextBox2″);
    TextBox TCnum = (TextBox)row.FindControl(“TextBox3″);
    TextBox TEmailID = (TextBox)row.FindControl(“TextBox4″);
    TextBox TAddress = (TextBox)row.FindControl(“TextBox5″);
    TextBox TAge = (TextBox)row.FindControl(“TextBox6″);
    TextBox TGender = (TextBox)row.FindControl(“TextBox7″);

    SqlCommand sqlCmd = new SqlCommand();
    sqlCon.Open();
    sqlCmd.Connection = sqlCon;
    sqlCmd.CommandType = CommandType.StoredProcedure;
    sqlCmd.CommandText = “UpdateCust”;
    sqlCmd.Parameters.Add(“@CustID”, SqlDbType.Int).Value = id;
    sqlCmd.Parameters.Add(“@UserName”, SqlDbType.VarChar, 50).Value = TUname.Text;
    sqlCmd.Parameters.Add(“@ContactNumber”, SqlDbType.VarChar, 50).Value = TCnum.Text;
    sqlCmd.Parameters.Add(“@EmailID”, SqlDbType.VarChar, 50).Value = TEmailID.Text;
    sqlCmd.Parameters.Add(“@Adddress”, SqlDbType.VarChar, 200 ).Value = TAddress.Text;
    sqlCmd.Parameters.Add(“@Age”,SqlDbType.VarChar,50).Value=TAge.Text;
    sqlCmd.Parameters.Add(“@Gender”,SqlDbType.VarChar,50).Value= TGender.Text;

    sqlCmd.ExecuteNonQuery();
    sqlCon.Close();
    GridView1.EditIndex = -1;
    BindData();

    }

    • #16 by Andrei Ignat at February 13th, 2012

      Reply | Quote

      Of course I can help
      2 things:
      1. write on http://www.asp.net/forums to get free help
      or
      2. pay for my time. ( You get paid for your’s , isn’t it?)

      • #17 by donc at February 13th, 2012

        Reply | Quote

        or you could just remove the third d from the Adddress. For free.

        • #18 by Andrei Ignat at February 14th, 2012

          Reply | Quote

          Thank you donc for pointing the solution!