I have a simple webservice, which I want to access via a http post.
The webservice code is show below:
[WebMethod]
public int Insert(string userDate, string DeviceID)
{
bool output;
DateTime date;
output = DateTime.TryParse(userDate, out date);
if (!output)
{
// Throw an error
return -1;
}
in...
I’m currently working on this theme : http://tf.ffffffive.com/fancy/
I just need a few pointers on how to get it working in IE6 and IE7 .
-The positioning is a bit off.
-If you guys have a helpful blog post of maybe give me a hand with some CSS coding I would really appreciate it.
Also the Javascript scrolling effect isn't working co...
Howdy,
I have a activex control that I've written using ATL, and am running into a somewhat serious and confusing problem.
when iDispatch::Invoke is called with DISPATCH_PROPERTYPUT/METHOD everything is fine..
when a return a value to javascript/ie after a method call of a VT_BSTR/with a valid BSTR it works fine and has been.
but wh...
I am working on a site with the current working copy held at: www.OnlineUticaCollege.com/david
I'm not all that familiar with the code slider in jQuery tools, but I know how to program so it's rather easy to make sense of.
I've searched through multiple posts on here and other sites to find a similar problem (and hopefully a solution) ...
I have a project using Javascript parse json string and put data into div content.
In this case, all of itemname variables is the same div's id.
If variable i about 900, I run this code in Firefox 3 for <10ms, but it run on IE 7 for >9s, IE process this code slower 100 times than Firefox
I don't know what happen with IE ?
If I remove...
Hey there,
I created a link in a pdf document to a local html file ressource.
When you press the link, the following messagebox is shown:
For none German speakers... Securitywarning ... Document is trying to open ressource... are u sure that you wanna do that... Options are "Ok" or "Block"
But it is independent if click "block" or ...
<script type="text/javascript">
$(document).ready(function(){
function listadepoimentos(page){
// $.get("ajaxes.php", {act:'listadepoimentos', page:page}, function a(b){$('#holder').html(b)}, "text");
$.ajax({
type: 'GET',
url: 'ajaxes.php',
data: {act:'listadepoimentos', page:page},
...
I have the next code which works fine in IE:
xml=new ActiveXObject("MSXML2.DOMDocument");
xml.async=false
xml.load("docs.xml")
How to do the same (without Ajax) in other browsers?
...
I have any interesting problem that has me totally stumped.
I have a piece of production code that I built that reads an IBM LTPA token cookie set by a machine managed by another dept, validates it, and uses it to log into a system my group manages (by setting some special cookies). This single sign-on process is entirely transparent t...
Hi,
I am having a problem with an input field in IE. The code is for a portlet and widths need to be dynamic as the user can place the portlet on any of the three columns in the page which all have different widths. As always it works fine in FF but not in IE. In order to make the width dyanaic I have set width="100%". Data to popul...
I have an dropdown with the following in it:
<select id="shipping" name="shipping_option">
<option SELECTED value="60">R60</option>
<option value="90">R90</option>
<option value="100">R100</option>
</select>
Then, when the content of the dropdown is changed, javascript runs updateTotal(), which is the following:
function u...
On my site I have a very basic setup: an 'a href' tag that just points to a file. Nothing fancy:
<a href="/path/to/my/file.doc">File</a>
No fancy javascript, nothing. Some users who are using old IE versions less than 8 have been having spotty problems downloading different files like this. What I've been able to trace it back to is t...
I have the following code:
<html>
<style type="text/css">
DIV { display:inline; border: solid red 1px; }
.editable { background:yellow; }
</style>
<div class="editable" contentEditable="true"> This is test text. This is test text.This is test text.This is test text.This is test text.Thihis is test text.This is test text.</d...
Hi there
I have a simple aspx page with some search options which queries an SQLEXpress database, and it is displayed in a gridview.
For some reason, it runs lightning fast in IE but very slow in Firefox.
It has very little code, a gridview a couple of images and a couple of textboxes and a search button. It was done with Expression We...
I posted this to the Adobe forums but I don't expect a good answer there. I am looking for help from someone who has done a game in flash and has encountered the same problem.
Steps to reproduce my problem:
Create simple dot DisplayObject in flash
dot.graphics.beginFill( color);
dot.graphics.drawCircle( 0, 0, 2 );
dot.graphics.endFil...
I have the following example code, which should pop up an alert when the div is in focus and a key is pressed. This does what I expect in IE 7, but not in Firefox 3.5.5. What am I doing wrong?
<html>
<head>
<title>JS test</title>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascri...
I researched through all BHO related documentation, but I just can't figure how Google gets the translation toolbar right below the tabs in IE.
Any useful pointers how to achieve the same effect for my own toolbar?
...
Hi All,
I have a WCF service in an ASP.NET AJAX app that is returning json. Im using MS AJAX and the client PageRequesManager to run the service after each endRequest for any partial page updates. The user has a form, they update data and submit and the service needs to grab the latest data. When I debug using FF and FireBug, everything...
Hi all,
I've a got a: it works in FF but not in IE problem with my jQuery code, here the little snippet of code
jQuery(this).click(function()
{
jQuery.post(href + '&rnd=' + Math.random(), function(data,status)
{
jQuery('.progress').show();
if(status == 'success')
{
var d = jQuery('<div id="insertDiv" />')....
Hi guys,
I build a webpage and in IE8 + FF3 it goes well, but a friend opens it in ie7 and it's terrible.
How can I emulate IE7 / other things / FF2 in my Windows 7 envoirement?
...