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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Kaylech

  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...

Part and Inventory Search

Back
Top