Hy people. I'm working on my webapp for the iphone. On some point you have the option to get a particular document from our appserver. It works on firefox, but safari just shows an empty download window. IE also can't get the file.
Below is the example link.
Is there something wrong with a link of this kind that Safari can't see?
ht...
Hallo all.
I got a strange problem with this piece of code
<select name="nazioni" id="nazioni">
<option selected="selected" value="val">Seleziona</option>
<option value="0">text 1</option>
<option value="1">test 2</option>
</select>
The correct behaviour is that with this html the selected option is the "Seleziona"
On some brows...
I have the following code to do a UIView animation:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationDelegate:self];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:mapView.view cache:NO];
[self addSubview:detailView];
[mapView removeFromSuperview];
[UIView c...
i have written a simple stored procedure (run as job) that checks user subscribe keyword alerts. when article
posted the stored procedure sends email to those users if the subscribed keyword matched with article title.
One section of my stored procedure is:
OPEN @getInputBuffer
FETCH NEXT
FROM @getInput...
Hello...
Suppose that i have this link...
http://localhost:8080/medilab/prototypes/exams/edit?exam.id=977&exam.name=bb
without exam.name=bb at the request the <s:property value="exam.name" />" will output the correct string...
Otherwise this parameter gets over the object:S:S:S:@
<s:property value="#attr.exam.name" />"
<s:proper...
Hi,
I have already gone through some of the posts in many websites regarding page_load being called twice but my problem is little bit different from those.
My problem is with the landing page of my web application.
Initially in my website page_load for the landing page was getting called twice every time when it is loaded. Since my a...
Hello Friends , have started using Netbeans recently after using Aptana, phpdesigner and Notepad++ .
I love Netbeans for it's speed and it has almost everything I want except for the fact that the FTP support is really Bad.
To start working on a FTP server , I have to download all the files to my localhost first which is such a waste of ...
hello,
I have a problem with sizes of divs - in Firefox everything is fine, but IE messes things up,
I use only jquery show hide function which open div with other divs nested in it,
you can see what I mean on www.custos.pl/v1 - by choosing any option on the bottom, a div opens up, where you have a submenu opening up jScrollPanes,
th...
I created a class to launch the MailComposer so that my iPhone app would only have one place to go when generating various kinds of e-mail: some with attachments, some not. Some with pre-filled addresses, some not.
I didn't want my class implement UIViewController, but it has to so it can be the delegate for the MailComposer. Otherwise,...
Hello!
Please visit http://domenadesign.com/istra-bike.com with Firefox browser!
After a few clicks on the links page go crazy but only in Firefox, what's the problem?
I tried to experiment with anything in css (position, float...) but it doesnt work properly..
Thank you for your answer!
...
Hi everyone. I'm having hard time with Xhtml Strict 1.0 and Css. And I'm almost out of solutions.
My Site Url: http://www.pro-turk.net/beta/
I made a jquery multilevel dropdown menu for my site.
It looks like OK, but I have used inline-block property of css display attribute on navigation menu which is a part of css 2.1 and isn't supp...
I have a problem about tomcat,
Our application designed on Tomcat 4.1.X and When I restart Tomcat 4.1.X there is no problem.
But I upgrade it to Tomcat 5.0.X. Now ,when I restart Tomcat 5.0.X session is down and application redirect me to login page.
Any idea?
...
I'm trying to send a recorded sound file as attachment with MFMailComposeViewController.
The sound file is OK.
The picker shows the correct file name, shows the audio file icon as attachment, sends the mail, but there is no attachment in the result.
I attached below the source of the sent mail. There is a "text/plain" content type par...
Hi,
I'm trying to apply OCP to a code snippet I have that in it's current state is really smelly, but I feel I'm not getting all the way to the end.
Current code:
public abstract class SomeObject
{}
public class SpecificObject1 : SomeObject
{}
public class SpecificObject2 : SomeObject
{}
// Smelly code
public class Model
{
publ...
Hello guys!
I'm having a problem when setting the visibility of two image buttons one on top of the other. The idea is to implement a play/pause control. The problem is that the only part where setting the visibility actually works is in the click listeners of the buttons. If I try to change it somewhere else nothing happens. Any idea w...
I have a HTML list with this style:
font-weight: bold;
padding: 0px;
margin: 0px;
list-style-type: none;
display: block;
width:700px;
font-size: 14px;
white-space: pre-wrap;
and the cells have this style:
display: inline;
and I have spacer cells between each cell with this style:
padding-right: 20px;
display: inline;
My problem ...
I have a dictionary declared as follows
IDictionary<string, object> _objectIds = new Dictionary<string, object>();
I was experiencing some problems with it and it discovered that the instance returned false as a result of ContainsKey method and from the watch window I was sure that the item was there.
So I created helper method
priva...
Hi guys!
I got a problem with the jQuery Validation plugin Jörn wrote.
Here is how my form looks:
Two radiobuttons that makes yes or no.
The yes radiobutton is called and has ID = #bWantStorage1
That radiobutton gives the email field a class named storage when its clicked.
And then I have the email field, and if Yes is checked ( #...
I'm working on a c# service application and i have this problem where out of no where and for no obvious reason, the memory for the process will climb from 150mb to almost 2gb in about 5 seconds and then back to 150mb. But nothing in our system should be using any where near that amount of memory (so its probably a bug somewhere). It mig...
I'm using a computer with an Intel Core 2 CPU and 2GB of RAM. The SO is Ubuntu 9.04.
When I try to compile this code:
;programma per la simulazione di un terminale su PC, ottenuto utilizzando l'8250
;in condizione di loopback , cioè Tx=Rx
section .code64
section .data
TXDATA EQU 03F8H ;TRASMETTITORE
RXDATA EQU 03F8H ;RICEVITORE...