Asp Application Contained Within An Iframe?
Mar 14, 2007
I have an asp application contained within an Iframe. If the browser refreshes, the page within the Iframe reverts back to the login page and the user has to log on again.Is there a way to keep this from happening if a user clicks the refresh button on their browser?
View 3 Replies
ADVERTISEMENT
Jun 2, 2004
I have a window (it's a modal dialog as well, but let's ignore that for now), where I need to write data into an iframe. Dynamically generated data. This data contains a form, this form is then sent to a server process, which expects it to be latin1 (iso-8859-1). It arrives as UTF-8. I have set the charset both in the container html (which contains the iframes) and the iframe in question to latin1, I once toyed with accept-charset of the form as well, all was ignored. So I started to recreate the experiment step by step.
HTML, meta tag text/html charset=iso-8859-1, FORM directly in it --> data is sent as latin1 Next I put the HTML for the form into its own HTML, put an iframe into the first documented and had its src point to the new HTML. Both the new and the old HTML had charset meta tags. Form was loaded into iframe, sent properly as latin1.
I removed both metatags, we're still sending as latin1. Next I thought it might have something to do with the dynamic nature of the iframe filling. I only assigned the iframe's src at runtime. Still, latin1.
Then I took the final step, and instead of reading an html into the src of the iframe, I wrote the code into the iframe with document.write. Everything LOOKED the same, but the server now receives the form data as UTF-8.
For this experiment I am using IE 5.5 (it is our compatibility base, another browser is not an option unfortunately - I'm a straight firefox man at home), and yes, the content has to be written into the iframe dynamically. I cannot create a temp file that I would load into it, or I would much rather not (it's a rather complex performance issue)
To clarify: Soon as I'm using document.write, all meta tags and or accept-charset (or what it was called) for the form are ignored completely.
View 2 Replies
View Related
Dec 30, 2009
I have created a page which pulls search results from various sites using PHP. It displays each result in a row in a table upon running.
I wanted to add a button saying "More information" at which point, a div would appear and load the associated link for that search result within an iframe within the newly appeared div. I've been able to get a div appear and disappear on button click but, I couldn't get it to dynamically load an iframe on click with the associated search results link.
View 3 Replies
View Related
Aug 12, 2011
Is there a way to get the id on a input element in a td?
The below code gets the value of an text input without knowing the full name in eq(6)
Its also gets the text value of a td eq(5)
I would like to check the state of a checkbox in eq(7) by getting the input id[code]...
View 1 Replies
View Related
Aug 24, 2009
I am having difficulty getting the value of a specific value contained in a <p> tag, what is happening is that it retrieves the value of the first <p> tag value and not the one the user clicksWhat I need is to retrieve the value from the <p> tag the user clicked
$(document).ready(function() {
$("p").click(function () {
var prop = $("#property_links").val();
[code]....
View 1 Replies
View Related
Sep 29, 2009
Basically I have an application which generates HTML using VB dll's. This makes the code generated un-changeable as the dll's are not to me modified in any way. What I need to do is get hold of a image element so that I can switch its SRC to dynamically change the image. GetElementById is out as the nearest I can get to it is the <a> tag surrounding the <img> tag, so my question is what's the easiest and most bomb proof method of accessing this element.
View 10 Replies
View Related
Dec 17, 2010
I'm trying to get the width of the elements contained in a div. At the moment that was my best try : $("div.mydiv").children().width(); But all I get is the width of the first child.
What I need is the width of child1 + child2 + child3 etc.... each child might have a different width and they can be a div or an image <img>.
View 8 Replies
View Related
Mar 25, 2006
Is there a way to do the following?
<script language="javascript" type="text/javascript">
function newfunction(objectName) {
// how can I create a new obect called whatever is contained in the objectName string?
}
//create a new object called myObject
newFunction("myObject");
myObject.getAttribute("objectAttribute")
</script>
View 2 Replies
View Related
Mar 21, 2010
I'm receiving html into a variable from an external source and I'm trying to modify the id of one of the inputs within the html but when I change it, the original html isn't getting updated. an example of what I'm trying to do is :
var sTemp = "<div><input type='hidden' name='test' id='test' /></div>";
$("#test", sTemp).attr("id","newid");
after changing the attribute, sTemp still contains the original code
View 1 Replies
View Related
Jun 3, 2010
How do I use Javascript to loop through all the spreadsheets contained in 1 excel file?
I am now at the stage where I can open the Excel file and find a value on 1 spreadsheet. Is there any way to detect if the workbook has multiple spreadsheets and then loop through all the spreadsheets to find a value?
View 3 Replies
View Related
May 20, 2010
I am planning on using the maito form with Javascript. I have a form and it is structured in the following fashion:
<form>
<b>Subject </b> <input type="text" name="subject" size="30"><br>
<b>Person 1 <b><input type="checkbox" name="email" value="person1@email.com"><br>
<b>Person 2 <b><input type="checkbox" name="email" value="person2@email.com"><br>
<b>Person 3 <b><input type="checkbox" name="email" value="person3@email.com"><br>
<input type="submit" onclick="submit">
</form>
What I am trying to do with Javascript is that you fill out the subject name and then you select which recipients of email you want to receive the email. So if I select Checkbox 1 and Checkbox 3 then when I click submit, it opens my Outlook and the To is filled in with person1@email.com;person2@email.com. So I guess I would need the javascript to populate and <href mailto: form after checking which names are checked and then populating the mailto with the variable that contains the list of names I chose. Right now we have a clunky method using the mailto but I don't have the option of choosing who it mails to so when I send it, I send the mail to everyone, even those on vacation.
View 1 Replies
View Related
Jul 20, 2005
I'm trying to pass trough all the objects of a form but I have some text
inputs in a DIV and I have many DIVs like this on my form.
I'm doing something like:
for (i = 0; i < document.forms(0).item.length; i++) {
dosomethingwith(document.forms(0).item(i));
}
but document.forms(0).item.length are the objects that are outside the
DIVs...
How can I pass trough all the objects of a form if some of them are
contained in divs?
View 1 Replies
View Related
Aug 23, 2010
One label, one textarea with some text content in it,
i would like to count how many "a" contained in testarea and show it as label every time i change the text contnet, how to do it?
View 1 Replies
View Related
Jun 2, 2010
I was trying to develop something where on hover of a paragraph the background colour of a div tag that contained all the content changed correspondingly.So the html is something like this:
Code HTML4Strict:
<div id="container">
<p>Change the colour</p>
</div>
I did something simple first where the text colour of the paragraph changed on hover of that paragraph. Now that works completely fine. Here is the code:
Code HTML4Strict:
<!DOCTYPE html>
<html>[code].....
but it does not work .get the latter code working so that the background of the container will change on hover of a paragraph?
View 5 Replies
View Related
Jul 9, 2009
Im writing client-side javascript and I want to do a server side include. There are many server files but only one will be included. These files contain peoples names and phone numbers. This info is packaged as a line of javascript but I can change that packaging if necessary.
The file name to include is being passed as a url parameter: [url]
I know how to parse the url string and stuff the ID number into a javascript variable.
I set <ICODE> foo = "/people/12345.html" </ICODE> and tried <ICODE><!--#include virtual="${foo}" --> </ICODE>
but this did not work.
Is there a way to do this with javascript given that the name of the file I wish to include is contained in a variable? If not, what is the usual way of getting the data in the server file into my client-side javascript?
View 3 Replies
View Related
Feb 2, 2011
I am looking to have a link open a closeable window that is contained within a browser window. If you click on the "sizing charts" link on this website, this is exactly what I am looking to do:
[URL]
The window is contained within the current browser window, it can be dragged around, but not outside the parameters of the browser window.
View 2 Replies
View Related
Mar 31, 2011
i am thinking of using a xml file as a data base for example , the xml file stores a list of reference numbers which is allocated to a url or a name such as 0123456789 and i have a text box on a webpage and the user types in a reference number and the javascripts reads the xml file to check if its a valid reference number i.e a registered number i am new to working with xml etc.
[Code]....
id like it to read the specific data thats contained within the tag such as 0123456789's tag = JOE
View 2 Replies
View Related
May 25, 2006
I need to develope a multilanguage application in javascript:
is there some particular library, or do you have some
pointer to guidelines to follows: the messages should
if possible be keeped in a separate file, one for language.
Is there some standard format?
View 2 Replies
View Related
Sep 3, 2007
I having taken on a large project (set by myself), and I can never
seem to plan out my functions, classes, variables etc... in a format
that's easy to read, and follow.
Would anyone know of some kind of application which will allow me to
"prototype" my application first? I am sure such a thing exists, I
just don't know what I am looking for. I think I am after something
along the lines of Microsoft Visio, but a bit simpler.
View 4 Replies
View Related
Jan 13, 2010
I know this sounds so stupid, but it's a project that I am working on. I need to develop an application where people can upload a picture of themself and then it will add a wig to their picture over their hair.I just don't know how the code scans the uploaded photo and finds where to add the wig to the picture. The program will be really simple. No choice of wigs there is just one wig and as soon as the picture is uploaded the wig should be added and then displayed.
View 2 Replies
View Related
Jul 23, 2005
Is there any way for me to capture the DocumentBeforeSave event with an ActiveXObject("Word.Application") via Javascript in IE?
View 1 Replies
View Related
Sep 29, 2005
Is there any way to debug javascript in a web application? When I
develop JSP pages, and it has the javascript code in it. The problem is
the debugger in Java IDE (WSAD in my case) can only debug Java code but
not Javascript code.
What should I do to debug javascript code?
View 2 Replies
View Related
Oct 30, 2006
I am developing a web application in asp.net. In this application, i would like to disable all other tool bar other than menu bar. If you know more about the same. Please guide me to proceed further?
Note: It should work for all major browser such as IE, netscape, Mazilla, opera....
View 1 Replies
View Related
Nov 14, 2006
I am using ASP to make an application. What I want right now - is to
make the self updating list of the users online - based on thier
cookies. In my opinion all seems to be writen well with it's logic, but
computer thinks otherwise. I use application("loged") to store the
cookies of all users. Code:
View 5 Replies
View Related
Oct 19, 2011
Ineed to pass two variable in a querystring from one application (in PHP) to another (in ASP.NET). It's a one way transfer...That is I need to encrypt it in PHP and decrypt it in ASP.NET (c#). The data will be anywhere from 5 - 15 characters..only letters and numbers.
View 2 Replies
View Related
May 2, 2010
I have an application on my server that is called leaf.exe, that haves two arguments needed to run, they are: inputfile and outputfile, that will be like this example:
Code:
pnote.exe input.pnt output.txt
They are all on the same directory as my home page file(the executable and the input file). But I need that a JavaScript could run the application like that, then I want to know how could I do this.I'm using just Apache, I don't have any language for web installed on it. My goal is to do a site using just JavaScript, without the help of anyother language than it, HTML and CSS.
View 6 Replies
View Related