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...
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...
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...
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"...
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]...
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?
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...
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.
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)...
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...
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...
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...
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...
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...
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.
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...
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.
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.