Click here to Skip to main content
15,893,486 members

Comments by Mukthahar Shaik (Top 8 by date)

Mukthahar Shaik 12-Feb-18 14:29pm View    
helloo aaronzeng. you need to post this one in "ask a question". any way your solution is here:

<script src="jquery.min.js" type="text/javascript"></script>
    <script type="text/javascript" language="javascript">

    $(document).ready(function () {
        alert('ready');
        $("#go").click(function () {
            alert('did it');
        });
    });
 </script>

<body>
<input name="Go" id="go" type="button" value="Go" onclick="doIt();"/>
</body>


always use selector(class name, control id) to apply function.
Mukthahar Shaik 12-Feb-18 14:26pm View    
Deleted
helloo aaronzeng. you need to post this one in "ask a question". any way your solution is here:
<script src="jquery.min.js" type="text/javascript"></script>
    <script type="text/javascript" language="javascript">

    $(document).ready(function () {
        alert('ready');
        $("#go").click(function () {
            alert('did it');
        });
    });
 </script>  
Mukthahar Shaik 12-Feb-18 13:02pm View    
thank you Ziee

problem solved by changing datatype from varchcar2 to datetime.
Mukthahar Shaik 12-Feb-18 13:01pm View    
Thank you Brian Tan.

problem solved by changing datatype from 'varchar2' to 'datetime'.
Mukthahar Shaik 2-Feb-18 11:38am View    
thank you thank you thank you thank you bro. i solved.
i dont know how to explain, but in pageload i was initialized DB values to textboxes.then after edit textbox values. i clicked on update button. that time page again loaded and replaced with old values. so i always get old values even after i updated. now i put pageload code into

if(!ispostback)
{
//code;
}

now everything ok.