Search

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

Matching Posts

  • Re: Dynamic CheckBox Created On UpdatePanel

    Thanks for the reply chetan... the problem is solved... I used stateview to keep the value and then on pageload i re-initialize all the controls again... Working now ;) Thanks
    Posted to ASP.NET AJAX UI (Forum) by p2mb2 on 3/20/2009
  • Re: which ajax control should i use?

    Hi... You can use javascript to do that... have a look at: http://drupal.org/project/jq_maphilight
    Posted to ASP.NET AJAX UI (Forum) by p2mb2 on 3/18/2009
  • Dynamic CheckBox Created On UpdatePanel

    Hi guys... I have a problem in my code. I have dynamicly created some checkboxs in a panel that is inside an Update Panel... What the code does is, based on the client dropdown menu options selected, it goes to a mysql database and retrieve all the data available to that selected dowpdown value: 1 protected void buscarTipologiasCheckBox( int _camarote) 2 { 3 4 cmd = new MySqlCommand( "SELECT * FROM outros_tipologias WHERE id_cruzeiro = '" + idCruzeiro + "' ORDER BY id_tipologia"
    Posted to ASP.NET AJAX UI (Forum) by p2mb2 on 3/18/2009
    Filed under: Udpdatepanel Checkbox Dynamic Postback Init
  • Re: Java Web Service To Asp.net c#

    Hi venkob, In fact No, I write it in C# by hand... But you need to create the XSDL file of the Web service, and then publish it online (copy to the server). After that, you go to VS and add web reference and give the url to the XSDL file. That should show to your Web Site or App the methods that the WEb Service have and how they can be called.
  • Re: 2 decimal numbers in double number

    Thanks star ;) worked fine :) Thanks to all the other answers ;)
    Posted to Getting Started (Forum) by p2mb2 on 6/5/2008
  • Re: 2 decimal numbers in double number

    My mistake... But still not working.. I just take: MySqlCommand cmd = new MySqlCommand(query, connection); try { connection.Open(); dr = cmd.ExecuteReader(); while (dr.Read()) { dadosPacote[ "preco" ] = (Convert.ToDouble(dr[ "preco" ])).ToString( "0.##" ); dadosPacote[ "titulo" ] = dr[ "titulo" ].ToString(); dadosPacote[ "descricao" ] = dr[ "descricao" ].ToString(); dadosPacote[ "imagem" ] = dr[ "imagem" ].ToString
    Posted to Getting Started (Forum) by p2mb2 on 6/5/2008
  • Re: 2 decimal numbers in double number

    Compiler Error Message: CS1501: No overload for method 'ToString' takes '1' arguments Source Error: Line 43: while (dr.Read()) Line 44: { Line 45: dadosPacote["preco"] = dr["preco"].ToString("0.##"); Line 46: dadosPacote["titulo"] = dr["titulo"].ToString(); Line 47: dadosPacote["descricao"] = dr["descricao"].ToString();
    Posted to Getting Started (Forum) by p2mb2 on 6/5/2008
  • 2 decimal numbers in double number

    Hi guys... I have a web application that goes to a mysql database anda take a double(8,2) number. And when I use it in code the decimal numbers (2) when are 0 just disapear. How can I deal with this to keep ALWAYS the original formate of the double number ? 6 digits left and 2 right from the point ? What I want: Number: 45.343434 = 45.34 Number: 45 = 45.00 Number: 45.1 = 45.10 Here is the code (just going to the database and take the value): 1 MySqlCommand cmd = new MySqlCommand(query, connection
    Posted to Getting Started (Forum) by p2mb2 on 6/5/2008
  • Re: TimeOut Mail Sender

    thank's for the answers, i'll try it tomorrow ;) But isn't the sleep used for little time values ??? And, this is a web page.... if I close the page when sending the emails will the proccess be terminated ???? THanks again ;)
    Posted to Architecture (Forum) by p2mb2 on 6/2/2008
  • TimeOut Mail Sender

    Hi guys, I have one newsletter system to send emails to 4000 registered members. But in order to avoid crash the email server, I need to send 100 each time, (10 in 10 minutes). So I keep clicking the SEND button and marking 100 database entrys as "already send" till I have the 4000 emails marked. I need a way to do this automaticly. Click the send button and the server from 10 to 10 minutos send 100 emails and mark them as "already send" in the database (just change a value from
    Posted to Architecture (Forum) by p2mb2 on 6/2/2008
Page 1 of 2 (17 items) 1 2 Next >