I am trying to make my own website and it was comming along quite nicely. It looked beautiful in firefox when opened and worked wonderfully. But then I run it in any other browser... and it screwes up... how can I fix this? IE especially hates it =[
you just gota see it to know what I'm talking about so here is the link
http://opentech.durhamcollege.ca/~intn2201/brittains/chatter/
please give solutions that don't involve javascript.
Thanks
Shelby
Hi ,
Silverlight version : 4
Silverlight patter :MVVM
Visual Studio template :Silverlight navigation application
How do I deal with the browser's forward and backward buttons, specially during async calls?
thank you.
Hello,
I have a very basic knowledge of the web programming, and I couldn't figure out the answer to this question.
Typically, a cookie is used to identify a session in web applications. However, as far as I know, multiple browser windows share cookies. In that case, how does web applications distinguish between the tabs?
We're developing a browser-based warehouse app that needs to print labels and invoices regularly. We want to be able to print to the local printer without going the the usual browser print dialogs. Is this possible? Possibly using a greasemonkey userscript? We don't want to have to setup a whole CUPS printer network and deal with all that, but warehouse pickers having to click through a print dialog 1000 times a day isn't an option.
We're printing PDFs, not sure if that matters. If we could do this another way using HTML5 or something else I'm open to course changes or other ideas here.
In what other software-related technologies is the term clientlet used, besides the Lobo browser project? Google search yielded nothing of use, it returns client let as part of non-related phrases, not as an unitary term.
Hi All,
I am using asp.net with C# [3.5]. I want to display Image before my URL in browser, like IE and mozilla used to have. I want to display my custom image.
Please help.
Thanks in advance
I have been tearing my hair out of late trying to get my web map working on internet explorer. It's working flawlessly on every other major browser but none of the content will load in IE. Anyone out there who's good at browser testing that could help out?
I know the leaflet javascript api, which I'm using for this project, supports IE in theory. In practice this isn't working out too well...
Link to a live version of the web map:
https://mywebspace.wisc.edu/axler/SLRE_Deep_Map/index2.html
Let me know if there is anything else I could add that would help in deciphering this problem...
Thanks!
I have installed XAMPP on my computer which is Windows 8 pro. I use to work with Windows 7
every time I run the index.php file on Windows 8 it shows the code on the browser IE10.
Here is what I have done:
I have named the file correctly: index.php
I have installed the server and saved the files inside c:/xampp/htdocs/PHP/
I have used to open and close all PHP tags
and everything else seems working fine, like, PHPMyAdmin, and the Ini file
I don't know whats wrong and it is driving me crazy ...
Farris
I have an input field on a webpage that contains a credit-card number. What is the best way of preventing the browser from caching this value?
Any solution needs to work on a large selection of browsers.
Hi All,
I have date as 31.03.2010 in german ofcourse 31 is date,03 is month and 2010 is year. Now I want to display the date as per the selected datetime format for the browser, say is user has german for him I would display 31.03.2010 whereas for English I would display 03/31/2010.
Any Idea how this can be done?
Hi, I'm trying to accomplish something like this (http://picturegroup.com) , where you have images displayed in several columns, but as you resize your browser, columns will (dis)appear so to fit what you can see on the screen.
Any ideas on how can I do this (links, etc)?
Thanks!
PS: Bear in mind that I'm quite a ASP.Net noob
Is it possible to launch SMS/Texting application from a link in a website on a mobile browser? I doubt it's possible globally, but maybe it's possilbe for certain subsets (Blackberry, Windows Mobile, Google Android, etc etc), which we can detect and display.
When tabbing through controls in an ActiveX control hosted in IE, once I get to the last control the tab key no longer does anything. I would like it to move the focus outside the ActiveX control to the next html control.
This works fine when the ActiveX control is hosted in a WinForms app, does anybody know how to make this work in the browser?
It may also be relevant that the ActiveX control is a simple wrapper around a WPF control.
I have a jQuery Dialog box on one of my pages. One of the buttons in the dialog boxes triggers a JavaScript prompt OnClick. Everything seems OK with the lastest versions of Internet Explorer, Chrome, and Mozilla Firefox, but some users are reporting weird behavior.
Are there any known browser compatibility errors with jQuery UI dialog boxes?
I am trying lock block on page test.cfm and below is code written on page.
<cfscript>
writeOutput("Before lock at #now()#");
lock name="threadlock" timeout="3" type="exclusive"
{
writeOutput("<br/>started at #now()#");
thread action="sleep" duration="10000";
writeOutput("<br/>ended at #now()#");
}
writeOutput("<br/>After lock at #now()#");
</cfscript>
assuming my url for page is http://localhost.local/test.cfm and running it on browser in two different tabs. I was expecting one of the url will throw timeout error after 3 second since another url lock it atleast for 10 seconds due to thread sleep. Surprisingly I do not get any timeout error rather second page call run after 10 seconds as first call finish execution.
But I am appending some url parameter (e.g. http://localhost.local/test.cfm?q=1) will throw error. Also I am calling same url in different browser then one of the call will throw timeout issue.
Is lock based on session and url?
Update
Here is output for two different cases:
Case 1:
TAB1
Url: http://localhost.local/test/test.cfm
Before lock at {ts '2013-10-18 09:21:35'}
started at {ts '2013-10-18 09:21:35'}
ended at {ts '2013-10-18 09:21:45'}
After lock at {ts '2013-10-18 09:21:45'}
TAB2
Url: http://localhost.local/test/test.cfm
Before lock at {ts '2013-10-18 09:21:45'}
started at {ts '2013-10-18 09:21:45'}
ended at {ts '2013-10-18 09:21:55'}
After lock at {ts '2013-10-18 09:21:55'}
Case 2:
TAB1
Url: http://localhost.local/test/test.cfm
Before lock at {ts '2013-10-18 09:27:18'}
started at {ts '2013-10-18 09:27:18'}
ended at {ts '2013-10-18 09:27:28'}
After lock at {ts '2013-10-18 09:27:28'}
TAB2
Url: http://localhost.local/test/test.cfm? (Added ? at the end)
Before lock at {ts '2013-10-18 09:27:20'}
A timeout occurred while attempting to lock threadlock.
The error occurred in C:/inetpub/wwwroot/test/test.cfm: line 13
11 :
12 : <cfoutput>Before lock at #now()#</cfoutput>
13 : <cflock name="threadlock" timeout="3" type="exclusive">
14 : <cfoutput><br/>started at #now()#</cfoutput>
15 : <cfthread action="sleep" duration="10000"/>
...
Result for case 2 as expected.
For case 1, strange thing I just noticed is tab 2 output "Before lock at {ts '2013-10-18 09:21:45'} indicates that whole request start after 10 seconds (means after the complete execution of first tab) when I have fired it in second URL just after 2 seconds of first tabs.
In axis2 on Java it's possible to run operations in the browser by the way you send the url
for example
localhost:8080/axis2/services/SimpleService?wsdl
could have operations implemented by writing urls like so
localhost:8080/axis2/services/SimpleService/hello?param0=xxx
My Question is can you do the same in PHP5 SoapServer where the url is as below?
localhost/soaptest/index.php?wsdl
Thanks
I created a database via javascript using Google Gears on Android 1.5 and I'd like to access directy the sqlite file to look inside it whitout using Gears. I found several "File Browser" but they only browse the SD card. Is there a way to fetch it from the phone file system?
I have an HTC Dream running Androis 1.5.
Thank you!
Hi every one,
I am developing a mobile based web-site, there i have intigrated google maps, i need to fill the 'From' field of google maps dynamically.
Is it possible to get the 'GPS' location form web-browser and fill it up in the 'From' field of a google map dynamically.
I have a View where I can upload an image and the image is also displayed in there like this:
//ResourceStorage is a virtual directory that indicates to the pictures storage location
<img src='<%=Url.Content("~/ResourceStorage/Profile/pic.jpg") %>' alt='pic' />
after I upload the picture, on the hard drive I get the new "pic.jpg" but in the browser I still have the old one (I tried clearing the cache, doesn't help)
hey in my application i use web browser component on a windows form and display any website that user types in say "google.com"
but that website does not fit in properly with the screen size
how can i do that through code?
i cant find any property of windows mobile...
can somebody help!
I have an xsd file Foo.xsd. I tried to refer it in a WSDL file as
But when I try to access the wsdl url using browser I am getting the following error.
org.codehaus.xfire.XFireRuntimeException: Couldn't find schema part:
I am using xFire 1.2.6 for generating webservices.
Any input would be appreciated!
I want to call android application on clicking of button on some website from mobile.
Suppose I am opening one url on android browser and I want to call my application on clicking on button provided by that site. How to do that??
I'm have a java program that uses Apache httpclient api. This is used to login to and communicate to a webapp. Once logged in, there's a situation in which the program issues an execute process to open up firefox to hit the webapp and allow the user to see data in the browser. Since the java program is already logged in, is there a way to share that current session PHPSESSID so that the spawned firefox is already logged in and working in that same session?
We've all seen in-browser rich text editors, which allow you to edit colored/styled text in a WYSIWYG manner. But what about code editors, which automatically highlight code based on language rules as you type? Think Eclipse in a textarea (but without the refactoring support).
Do such things exist? I imagine scaling would be a problem - larger files would be difficult to edit efficiently.