Search

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

Matching Posts

  • Re: Call Bind Method from Client Side Code

    Hi, i'm not a expert about ajax but in your modal popup when you clic on button for to close your window call a parent javascript function. You call this function with opener.MethodName() and this method call a server side (asyncrhone) function for refresh your control ! register all with a scriptManager for example Is it clear ? Christophe
    Posted to ASP.NET AJAX UI (Forum) by christopheEU on 11/10/2009
  • ajax 1.0 and experience with internet explorer 8 !?

    Hi, where i work we use asp net 2.0 and ajax 1.0 for to build our application ! we think to support IE 8 in the futur, does anyone knows if we must to look at some probleme with controls ajax 1.0 (update panel, scriptmanager, ...) and so on ! or no problem as been detected on this browser !? Thanks for your experience Christophe
    Posted to ASP.NET AJAX UI (Forum) by christopheEU on 10/9/2009
  • Re: Javascript regular expression !

    Hello rtpHarry, thanks for your help, but that doesn't work ! have you god any idea ? Thanks christ
    Posted to Getting Started (Forum) by christopheEU on 9/22/2009
  • Javascript regular expression !

    hi, i'm a beginner with asp net 2.0 and javascript i have a regular expression that i have found on internet :-) here is it, this expression is used on a text box var reg = /^\d{0,5}(\,\d{1,2})?$/; the problem is that the user IS MANDATORY to enter a coma as this , in the text box for to validate the page! now, we must to accept to the point => . and the coma => , in the text box How i can add the . to the regex for to validate the entry in the textbox thanks for your time christ
    Posted to Getting Started (Forum) by christopheEU on 9/21/2009
  • how to add a text in the header grid view ?

    Hi, i'm a beginner with visual studio 2005 and asp net 2.0 i have a grid view with some header upside the grid view i have a drop down list with some values as 2008 2009 and so on ! i bind my grid on page load but on row data bound i'd like to change the header on the grid view with the value concat with the value in the drop down ! exemple : text column 1 + 2009 and so on ! on the row data bound i do this : e.Row.Cells[1].Text = "test " + ddlSelectPeriod.SelectedItem.Text; that's
    Posted to Web Forms (Forum) by christopheEU on 7/31/2009
  • Re: format a string in decimal (0,00)

    hi all, thanks for your time, thats work fine ! have a nice day christophe
    Posted to Getting Started (Forum) by christopheEU on 7/20/2009
  • format a string in decimal (0,00)

    Hi all, I'm a beginner with asp net 2.0 i have a text box and i enter a number in this textbox and i would like to obtain as a result the number follow by ,00 exemple : if a type 15 => ouput => 15,00 if a type 35,1 => output => 35,10 and so on ! how i can do this ? i've try to use convert.ToDecimal(string in) but that doesn't work ! Thanks for your time christ
    Posted to Getting Started (Forum) by christopheEU on 7/17/2009
  • regular expression + numeric value

    hi every body, i have a textbox on a webform and i'd like that the user CAN ONLY type some numeric value with a dot and two other numeric value here is a sample ! 125.00 268.01 and so on ! i 'm a beginner and i 'd like to create a regex for to use easily in other controls! have you a sample for this little problem ? Thanks for all Christophe
    Posted to Web Forms (Forum) by christopheEU on 6/24/2009
  • Re: create a calendar with 3 dropdownList

    Hi all, thanks for your time, i have coded a solution but not really tested, here is it my solution protected void Page_Load( object sender, EventArgs e) { if (!Page.IsPostBack) { buildListYear(); buildListMonth(); } } /// <summary> /// /// </summary> /// <param name="dateTime"></param> private void buildListYear() { int iYear = -1; DateTime dt = DateTime .Now; iYear = Convert .ToInt32(dt.Year); for ( int i = 0; i <= 5; i++) { ddlYears.Items.Add(iYear.ToString
    Posted to Web Forms (Forum) by christopheEU on 6/18/2009
  • create a calendar with 3 dropdownList

    Hi everybody, I'm a beginner with asp net 2.0 and ajax. I must to create a calendar WITH 3 dropdownList (day - month - year) and i'd like to know if someone knows an article about this or has a sample ! i know i can use the calendar controls localte in asp net but my boss wants three dropdownList. Thanks in advance Christophe
    Posted to Web Forms (Forum) by christopheEU on 6/17/2009
Page 1 of 11 (102 items) 1 2 3 4 5 Next > ... Last »