Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. Please help me(java script)

Please help me(java script)

Scheduled Pinned Locked Moved ASP.NET
helpjavatools
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    kishore19 hotmail com
    wrote on last edited by
    #1

    hai friends, my name is kishore kumar actually i am getting one problem ,but i am unable to solve it please help me That is : i will enter text(number), that should be changed into currency formate that means suppose if i enter 99 in a textbox ,that shuld be changed to 99.00 and i have to show it as currency formate i have three text boxes in two text boxes, i will enter values , in third text box, the multiply of those two text boxes values shuld be displayed with currency formate if i enter first text box : 9 second text box : 11 out put : third text box: 99.00 ,shuld be displayed please help me,that should be done at client side

    E V 2 Replies Last reply
    0
    • K kishore19 hotmail com

      hai friends, my name is kishore kumar actually i am getting one problem ,but i am unable to solve it please help me That is : i will enter text(number), that should be changed into currency formate that means suppose if i enter 99 in a textbox ,that shuld be changed to 99.00 and i have to show it as currency formate i have three text boxes in two text boxes, i will enter values , in third text box, the multiply of those two text boxes values shuld be displayed with currency formate if i enter first text box : 9 second text box : 11 out put : third text box: 99.00 ,shuld be displayed please help me,that should be done at client side

      E Offline
      E Offline
      ednrgc
      wrote on last edited by
      #2

      Nice homework assignment. First year, I see. Is this JavaScript (as in title) or VB.NET (as in this forum).

      1 Reply Last reply
      0
      • K kishore19 hotmail com

        hai friends, my name is kishore kumar actually i am getting one problem ,but i am unable to solve it please help me That is : i will enter text(number), that should be changed into currency formate that means suppose if i enter 99 in a textbox ,that shuld be changed to 99.00 and i have to show it as currency formate i have three text boxes in two text boxes, i will enter values , in third text box, the multiply of those two text boxes values shuld be displayed with currency formate if i enter first text box : 9 second text box : 11 out put : third text box: 99.00 ,shuld be displayed please help me,that should be done at client side

        V Offline
        V Offline
        Venkatesh Mookkan
        wrote on last edited by
        #3

        Try this javascript function. This might be helpful.

        function ChangeToCurrency (TargetString)
        {
        var Index;

        if ((Index = TargetString.indexOf(".")) == -1)
        	TargetString += ".00"
        else if (TargetString.substr(Index + 1).length == 0)		
        	TargetString += "00"
        else if (TargetString.substr(Index + 1).length == 1)
        	TargetString += "0"
        	
        return (TargetString);
        
        }
        

        Regards, Venkatesh Mookkan. Software Engineer, India

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups