User Profile

Collapse

Profile Sidebar

Collapse
rameshsambu
rameshsambu
Last Activity: Nov 3 '06, 07:41 AM
Joined: Oct 15 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • hi dreamlab

    I think i fixed what you were trying to do.

    Insert this within the script tags at the top

    Code:
    function validate_form(frm) {
    	if (_formHandler(frm))
    	 document.form_1.submit(frm);
    }
    rename the form to form_1 and remove the onsubmit attribute and make it like this

    Code:
    <form name="form_1" method="post" action="formprocessorpro.php"
    ...
    See more | Go to post

    Leave a comment:


  • rameshsambu
    replied to Validation to check
    hi Seetha

    Suppose you are going to store user information and the user table
    has fields username, password, firstname and lastname.

    now you usually will want only one person to have a particular username

    to ensure that this happens you have to check if any other user with the same username
    already exists.

    you have to do this before you try to insert a new user record. ...
    See more | Go to post

    Leave a comment:


  • rameshsambu
    replied to pop up calender
    hi hema

    get me the page where you want to use the calendar. I'll integrate the calendar to it and give it to you for free.


    -Ramesh
    See more | Go to post

    Leave a comment:


  • rameshsambu
    replied to help for jsp
    hi Sonoo


    I think you mis-named or mis-called your function

    use function display1() { instead of function display() { inside the script tags

    I think that solves the problem.


    Willing to help more if needed.


    -Ramesh
    See more | Go to post

    Leave a comment:


  • rameshsambu
    replied to double alert onBlur
    hi vauneen

    I remember i had to go through a similar situation in my good old days.

    I think what I did may be of some help to you

    Code:
    <script language="JavaScript" type="text/javascript">
    
    var error1,error2,error3;
    		if(document.bloody_thing_1.value == "") {
    			error1 = "Enter a valid bloody_thing_1.\n";
    		} 
    		if(document.bloody_thing_2.value
    ...
    See more | Go to post

    Leave a comment:


  • rameshsambu
    replied to links to graphics
    hi bssp


    could you please show me the code where you actually use the script? I mean the code portion where you would like to see the actual images.

    Seems like I probably can help


    -Ramesh
    See more | Go to post

    Leave a comment:


  • hi mandakini

    I saw the page that you work. excuse me I couldn't understand what is your requirement. Could you please explain what specifically you need. maybe I could help


    -Ramesh
    See more | Go to post

    Leave a comment:


  • hi Sahay

    In which scripting language do you want this to be done?

    - Ramesh
    See more | Go to post

    Leave a comment:


  • rameshsambu
    replied to Problem in script.
    hi ragini

    please send me the c file and the html file. I'll have a look and suggest some help if I can


    -Ramesh
    See more | Go to post

    Leave a comment:


  • hi Ismail

    sorry for responding late, was sleeping extensively.

    It seems you need to insert extra spaces so that all 3 data in select list gets aligned.

    if you are using mysql try modifying the select statement to this

    Code:
    <cfquery name="Q_CodeDescr" ...>
    select ....  RPAD(V_Optionvalue1,15,' ') as V_Optionvalue1, RPAD(V_Optionvalue2,15,' ') as V_Optionvalue2, RPAD(V_Optionvalue3,15,'
    ...
    See more | Go to post

    Leave a comment:


  • Hi ismail,

    firstly may i ask why would you like to display table like data inside
    a select box?

    consider using three select boxes side by side

    or else you can remove the select box and put table in that place.

    what i say may not be what you require. anyways if you clarify your need
    i can surely help


    Ramesh
    See more | Go to post

    Leave a comment:


  • Hi


    No not at all from the point of view of application flow. you can very well post from a asp form to cf page and vice versa. You can also use the get form sending (as url querystring) between page running different technologies.


    You cant include an asp page however simple it may be inside a cf page and
    vice versa.
    See more | Go to post

    Leave a comment:


  • hi Ismail


    i dont think this thing can be done using coldfusion. but can be done using javascript.

    first you have to give unique names/ids to the controls that you want to link up.
    for eg the bottom control is "bottom" and the top control is "top"

    then you must have a javascript function inside the page eg. "copy_to_to p"

    inside that put code like this...
    See more | Go to post
    Last edited by acoder; Apr 2 '12, 01:36 PM.

    Leave a comment:


  • rameshsambu
    replied to Pay Pal Functionality
    hi geetu,

    first you need a paypal account. if you have one they you will have the
    email which you used to register as the business email. eg. "abcd@efgh. com"

    use the following script to send data to paypal

    Code:
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> 
      <input type="hidden" name="cmd" value="_xclick"
    ...
    See more | Go to post

    Leave a comment:


  • rameshsambu
    replied to ColdFusion and MySQL
    I think this can be solved by doing the following

    in the mysql table change the price field datatype to double, put nothing for the length and 0.0 for default.

    in the code to insert data into the price field use

    insert into ... (, , price, ) values (
    ...,
    ....,
    <cfqueryparam cfsqltype="cf_s ql_double" value="#form.pr ice#">
    , ... )

    try...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...