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 Mike Lewis 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: *

  1. Kaylech

    i found error after upload ASP.NET website to a hosting

    Hi, Try recompiling and re-uploading your files and see if this fixes the issue.
  2. Kaylech

    Reset button is blanking all input text boxes. Any ideas why?

    Thank you Feherke. What I find very amazing with this forum is that I have posted 4 questions so far, including this one and all the experts have done is spend so much time arguing what I am doing wrong without proving any alternate solution. In the end, I end up not only coming with the...
  3. Kaylech

    Reset button is blanking all input text boxes. Any ideas why?

    I don't know why you keep putting up this nonsensical arguments. IE11 is not behaving incorrectly. It is an upgrade from IE9 intended to fix most of IE9's short comings. The issue is the plugin's incompatibility with IE9 and the real reason I came asking for help is to see if there are...
  4. Kaylech

    Reset button is blanking all input text boxes. Any ideas why?

    I may be new to this forum but I have been coding now for quite some time. Perhaps, the title is misleading but I thought I explained the problem well and as stated, this an IE issue. If the user hadn't brought this to our attention todsy, we wouldn't have known because it behaves exactly the...
  5. Kaylech

    Reset button is blanking all input text boxes. Any ideas why?

    I know what a reset button does sir. My question is when I use it in conjunction with jquery placeholder, how do I tweak it to return the box back to its original state? Here is an example of an input box with place holder: <input type="text" ID="dueDate" name="dueDate"...
  6. Kaylech

    Reset button is blanking all input text boxes. Any ideas why?

    I have a couple of <SELECT> elements in a form flavored with jquery Chosen plugin http://jdramaix.github.io/gwtchosen/ I also have html5 placeholder shim specifically for IE9 compatibility [link http://www.hagenburger.net/BLOG/HTML5-Input-Placeholder-Fix-With-jQuery.html]...
  7. Kaylech

    IE not posting data on first 2 attempts

    I am guessing that you are using classic asp? If so, what OS are you using? Also, I am guessing also that you have enabled asp since you said it works with chrome? You are probably right that perhaps, it has more to do with your IIS. Are you getting any errors?
  8. Kaylech

    IF statement and WHERE clause giving inconsitent results.

    Ok,thanks for your response vacunita, Question, more framed out of curiosity. If I have this: if (isset($_GET["bidStatus"]) && isset($_GET["bidType"])) { .... ; } elseif (isset($_GET["bidStatus"]) && $_GET['bidStatus'] != '' ) { ... ; } else {}; What do you think happens? In other words...
  9. Kaylech

    IF statement and WHERE clause giving inconsitent results.

    Ok, I moved the code around. Instead of having them next to each other, I moved the second elseif further down and it seems to work now.. Doesn't make sense to me at all but it seems to be working now.
  10. Kaylech

    IF statement and WHERE clause giving inconsitent results.

    Hi mates, If I run the following query alone, I get the results I am after: if (isset($_GET["bidStatus"]) && isset($_GET["bidType"])) { $sql = " SELECT c.* FROM ( SELECT ROW_NUMBER() OVER(ORDER BY b.ID) AS RowID,CONVERT(VARCHAR(11), b.BidDate, 106)...
  11. Kaylech

    Stumped on sorting issues

    Ok, got it working now. I was using it incorrectly. This is the code that worked: <th style="color:white;background-color: #8C8C8C;text-decoration: none;font-weight:bold;width:100px;"><a style="text-decoration: none; color: white;font-size:10pt;" href='?sort=BidDate&order=<?php echo...
  12. Kaylech

    Stumped on sorting issues

    Hi spamjim, How would you go about pasing $_GET[$fieldPost] In the first code I posted, this -> $searchType; would translate to department=whatever value, assuming department is selected. So, I attempted passing the $searchType to the sort/order link which is not working of course. Now, you...
  13. Kaylech

    Stumped on sorting issues

    Thanks Chris for the prompt response. I thought about that too but here is just one clickable column header: <th style="width:100px;">Details</th> <th style="color:white;background-color: #8C8C8C;text-decoration: none;font-weight:bold;width:100px;"><a style="text-decoration: none...
  14. Kaylech

    Stumped on sorting issues

    Our app is set up in such that a user enters a search value into a textbox or selects a value from the dropdown and hits the search button. If records are found, they are displayed. This part works great. Then there is the paging and sorting component. Each page holds 20 records. If there...
  15. Kaylech

    Auto Login

    I don't know if this issue is resolved but you can add the following to your web.config file: <authentication mode="Windows"/> <authorization> <allow roles="DomainName\Administrators"/> </authorization> <identity impersonate="true"/> Note: Replace DomainName with your actual domain...
  16. Kaylech

    I have corrupt DB and I'm trying to restore its .BAK file to a DB with the same name.

    Hi, I will take a slightly different approach. Restore the .bak file to a DB with a temp or different name. Once fully restored, and you can certify that your data is fully restored, delete the corrupt DB and then rename the new DB to the name of the deleted DB. That has always worked for me.
  17. Kaylech

    export appropriate records to .csv file based on querystring values??

    For some reason, I don't think YOU are reading *everything* I have been posting including the codes. Of course the query is failing but the *reason* the query is failing is because of the $strTypes variable. When I run this code - (example for simplicity): SELECT * FROM myTable WHERE...
  18. Kaylech

    export appropriate records to .csv file based on querystring values??

    Ok, I got this worked out. For those who might run into similar situation, I discovered explode() $strTypes = $_REQUEST['stypes']; $Types = explode("=", $strTypes); Then SELECT * FROM myTable WHERE b.BidDate = $Types[1]; That solved it for me.
  19. Kaylech

    export appropriate records to .csv file based on querystring values??

    hi jpadie, I think we are seriously miscommunicating about errors. There is NO database error. When I run my code in SSMS, it works great. Also, as stated above, if I remove the WHERE predicate, the code runs fine and dumps contents of the results into csv file except that it is not the...
  20. Kaylech

    export appropriate records to .csv file based on querystring values??

    UPDATE: I changed the WHERE clause a little bit. So, instead of this: where b.BidDate = (strpos($strTypes, 'bidDate') It becomes this: where b.BidDate = '$strTypes' When put an echo on this, this is what I got below where b.BidDate = 'bidDate=03/03/2015' How can I get rid of bidDate= so it...

Part and Inventory Search

Back
Top