Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bhoge
  • Order by date
  1. bhoge

    Passing a drop down menu option into an SQL statement

    hi outonalimb u can try with this code SQL="Select * from tablename where field=" & Cint(Request("comboname")) I think it is problem of data type conversion Enjoy Programming!!!!!!!!!!
  2. bhoge

    selecting dates that are in a specific year

    hi andycap I think u have to use Convert(datetime,selecteddate) function for manipulation , i think this works. Enjoy programming
  3. bhoge

    Javascript validation question

    hi, You can't validate your control after the page being posted to the server if u want to validate on push of submit button and before submitting the form so u can write ur function onsubmit event of form.like that <form name=&quot;myform&quot; method=&quot;post&quot...
  4. bhoge

    Refresh on load and refresh button problems

    hi u can try it <script type=&quot;javascript&quot;> function refreshPage(){ thisPage = document.location.href document.location.href = thisPage } </script> or <script type=&quot;javascript&quot;> function refreshPage(){ window.location.reload(); } </script>
  5. bhoge

    COM Objects

    hi turns20, I think u have to check for the IIS server's web user or directory security permissions.I might some problem in web sharing of c:\WINNT\System32\inetsrv .
  6. bhoge

    retrieving and inserting next number

    hi chinedu, this can be possible upto i understand ur problem. for last inserted record u can query with max function : SELECT max(ORG.ORGCODE) FROM ORG and display the max+1 for next insertion. same total can be shown by count functionin SQL u need to more clarify ur prob.
  7. bhoge

    Close button in asp page

    hi sandra, Span tag used where we have to make logical place for some html tag or text.same u can create logical place for your button prior to actully creating it and then use the response.write statement as i told u before in script code we use span for placing the button thats for accessing...
  8. bhoge

    Close button in asp page

    hi Sandra, You can write Javascript code in asp tags : Response.write &quot;<script></script>&quot; Response.write &quot;<input type=button name=B1>&quot; for your problem:u have to do all this 1) First u can create a <SPAN id=myspan name=span1></SPAN> tag where u want button and give it to id...
  9. bhoge

    login to a site via a prompt

    hi, u can try it with popup object but u have to explore more b'cos in a explorer it is very difficult to set modal focus such as in VB.its just guess !!!!
  10. bhoge

    Question regarding SQL Between and date range...

    hi aamaker if u can use the query without # then try this : SQL=&quot;SELECT * FROM tbl_data where entered_date between '&quot; & varfromdate & &quot;' AND '&quot; & vartodate & &quot;'&quot; write this query in one line. knowledge is meaningless until it is unshared.
  11. bhoge

    Number of Records in a Recordset

    hi, recordset returns -1 in case of the forwardonly case try for another cursor type bhoge
  12. bhoge

    passing an ASP value in a link not working

    hi andycap, i think u r using textbox in a loop so it can create the control array of the text box don't worry .if my guess is right then try it : process ur value in loop for(i=0;i<myform.declined.length;i++) { value=value + myform.declined(i).value //send the value by the same method which i...
  13. bhoge

    passing an ASP value in a link not working

    hi andycape, dear ur problem is general . I give the two solution try it: ----------------------------------------------- 1.u have to use java/vb script in this solution write following code on ur hyperlink:- <script> function clickme() { var textvalue=[formname].[textboxname].value...

Part and Inventory Search

Back
Top