Hi im working on a system with inputfields.
Normaly i put the input field on one line but now i have made it like this below
<input
type='text'
name='alg_persoonsgegevens_achternaam'
id='alg_persoonsgegevens_achternaam'
class='text dontprintinput'
value='xxxxxxx'
maxlength='50'
size='20'
/>
I was wonderdering if ALL browser...
Why does this work,
private void buttonBoo_Click(object sender, EventArgs e)
{
GeckoBrowser.Navigate("http://www.google.com/");
}
and this not?
private void buttonBoo_Click(object sender, EventArgs e)
{
Thread thread = new Thread(delegate()
{
GeckoBrowser.Navigate("http://www.google.com/");
});
thread.Start();
}
...
I was wondering if anyone knows how to launch a normal browser session and enter username and password details from c# code - perhaps using a webrequest?
nb the username and password is the popup screen not an embedded username and password tag.
...
Hi,
Its really hard to search the any combination of keywords in search engine about this because it used by most popular developer wanted a custom autocomplete by ajax.
Most developer search about the custom autocomplete to get result from db by ajax or about how to disable browser autocomplete due to security reason or they wantted t...
I'm building a series of basic accordions for a project.
We want them to have static, linkable pages. So we've created invidividual pages for each of the open states as well.
For example,
/whoweare is the main slider.
But we have a sub slider located at
/whoweare/whatwedo
What I'm looking to have done is, when a user clicks a heade...
I am working on a ASP.NET application. I want to prevent the user from viewing the previous page using the back button in the browser after logging out from the application.
...
How do browsers deal with a full cache? Presumably they all make some kind of decision on what to throw away based on file size, expiration time and so on? Anyone know where I can find details? Google just returns a load of pages about manually clearing caches.
...
I want to provide the ability to save some rendered data/charts (with the titles and other information not included in the image) by specifying the coordinates and size in the browser window that contains the data I want to save. Is there any way to do this?
...
I want to capture the browser window/tab close event.
I have tried the following with jQuery:
jQuery(window).bind("beforeunload", function(){return confirm("Do you really want to close?") })
But it works on form submission as well, which is not what I want. I want an event that triggers only when the user closes the window.
...
This isn't really a technical question so I apolgoise if I ruffle any feathers!
How do sites like these image web pages in different browsers? i.e. litmusapp.com
Thanks all
...
How do i enabled browser javascript using code?
using java,gwt or javascript
...
How can I use the browser as a UI for a desktop app? The ways I have come up with so far are...
Use all HTML/Javascript. Problem: Can't access filesystem or just about anything else.
Run a local webserver while the application is in use. Problem: How do I kill it when the user is done? My users are not technical enough to Ctrl+C.
Embed...
I am supporting some classic ASP pages. One of the core 3rd party components had a leak and was fixed with a new version of their CAB. For first time users or the ones who deleted the objects, browser prompts and downloads the object. How can new cab be made available for existing users with limited privileges?
...
I have a requirement where I need to enable playback (full screen) of a h.264 MPEG4 (thanks for the correction!) video from a local network, launchable from a browser link on a Windows workstation, and be frame accurate.
By frame accurate I mean that I need to be able to scrub through the video in the same way you would with a vtr, stop...
Is there an equivalent to Firefox's "Error console" in other browsers? I find the error console handy for finding JavaScript errors, but there doesn't seem to be an equivalent simple way to see error messages on other browsers. I'm interested in Internet Explorer, Opera and Google Chrome.
Post script: I'm not looking for an alternative ...
Allo,
EDIT:
1- OPEN FIREBUG, on the console tab
2- OPEN YOUR GMAIL ACCOUNT,
3- when gmail is loaded, click on one of your label (at the left under the draft box)
4- WITH FIREBUG YOU SEE THAT THE PAGE DOES NOT COMLETLY RELAOD SINCE ALL PREVIOUS ACTION STILL THERE FOR THE CURRENT DOCUMENT, BUT THE BROWSER COMPLETLY ACT LIKE THE PAGE...
Hi,
I have some divs that are set with position absolute (CSS) when the page is ready, and are positioned relative to another fixed div, wich works fine. However, before the page is loaded and everything is set, if the page is resized, those absolute divs don't follow the changes, moving to other places, wich I think they are given valu...
Hi,
I saw some web pages display diffrently on an iPod Touch (and iPhone) - they pretty much looked like the native iPhone apps.
Think this can be done with styles and, optionally, rendering diffrent HTML on the server side, based on the user agent from request.
So, how do I get this effect? And, also, is there any emulator of iPhone...
I initially designed my site to show a login box at the top of the page if the user was not authenticated (e.g. how reddit.com works).
I encountered a user who was having trouble with their browser's storage of their password because after a password change because their browser had stored their login information at different urls on th...
I am trying to debug an issue on my server side and I believe it has to do with the accept headers that are being sent from the browser. Here is my question, why would Internet Explorer change "accept" headers from one page to another page? Can I change the request headers from javascript?
Here is a request from one page:
Accept: ima...