User Profile

Collapse

Profile Sidebar

Collapse
helloiamhere
helloiamhere
Last Activity: May 29 '07, 05:58 AM
Joined: May 23 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • If u want to clear all the text box and change other controls to inital mode then u can simply have your controls inside a form and then use the following code
    Code:
    <script language="javascript">
    fromreset()
    {
    myform.reset(); //will reset all the controls in ur page to initial stage.
    (or) 
    document.myform.[textbox Id] = " "; // will clear the textbox alone
    }
    
    <form
    ...
    See more | Go to post
    Last edited by gits; Feb 17 '10, 06:45 PM. Reason: added code tags

    Leave a comment:


  • HI
    you can use the following function for the fields you want to validate

    Number Validation:

    [CODE=javascript]function numericValidate (string) {
    var intCharCode;
    for (var i = 0; i < string.length; i++) {
    intCharCode = string.charCode At(i);
    if (!((intCharCode >= 48 && intCharCode <= 57)))
    return false; (or)
    alert("it...
    See more | Go to post
    Last edited by gits; Feb 7 '08, 11:06 PM. Reason: added code tags

    Leave a comment:


  • Ofcourse the another reply defines the solution. For the details you posted i gave a sample query...

    just try the same with the database you have in your server....
    See more | Go to post

    Leave a comment:


  • HI,

    Do the Following steps to change the sa password.

    1) Enter in to the required server in the enterprisemanag er.
    2) Select the security --> logins
    3) right click on the sa available on login page and goto properties
    4) Go to server roles tab and check whether the system administrators is selected or not.If not selected, select it.
    5) Then move to general tab and enter your new password....
    See more | Go to post

    Leave a comment:


  • Ya It is possible
    Query to get the studentno and the course selected

    select StudentList.dbo .[tablename].student no, CourseSelection .dbo.[tablename].courseselected from StudentList.dbo .[tablename],CourseSelectio n.dbo.[tablename]...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...