Passing Info Inline To And From Javascript/ASP
I have a wierd problem. I have a multi-dimensional array. When a user selects a certain item in a drop down box, I need to manipulate certain data in the page. So essentially to find the correct information in the array, I have to know the selectedIndex in my select statement. I error checked the javascript function using an alert, so it works. I just need to know how I can pass the selected index to the array, and then pass the array to the javascript "updatePreviewPane"
View Replies
ADVERTISEMENT
Currently I have a list of products in a drop down list. not very informative or easy to browse.
browse to check4add.asp at http://www.flowersdirectory.co.uk
I want to be able to open a pop up where the customer can browse the additional products and pass the variable to the parent pages form variables.
View Replies
View Related
I want to keep multiple information from input in multiple pages when moving between them. The value remains in the string even the user jump to different page or click back to move back to previous page.
I heard it is possible if using javascript to assist in this but i don't know how.
Is there any sample code i can refer?
View Replies
View Related
Code:
while (!MyQuery.EOF){
Response.Write("<tr><td colspan='2' class='results'>" + MyQuery('Title') + "</td>");
Response.Write("<td align='right' class='results'>£ " + MyQuery('Price') + "</td></tr>");
MyQuery.MoveNext();
}
I have that returning a record set to display ! I then need to make it so the "Title" is a link to a page with all the information shown for that book! How would i go about doing this ?
View Replies
View Related
If I have a DB table which spans multiple pages, and if the check box is selected next to the item after all pages are view the user then selects done I need it to pass everything they selected to one page so they can view it and verify that is what they want. Then it is passed to a DB and also sent to me and the user in email.. I know it is alot, but it is what I need.. any suggestions or directions??
View Replies
View Related
Javascript Function
function Search(InLTR) {
.......
}
<a href="javascript: Search(<%=chr(65)%>)"><%Response.write(chr(65))%></a>
<%
For i = 66 to 90
%>
<a href="javascript: Search(<%=chr(i)%>)"><%Response.write(chr(i))%></a>
<%
Next
%>
This returns a list of letters The problem is when I pass them to the function I get a not defined error. I have to convert them somehow so the javascript then can use them.
View Replies
View Related
I am having two scripts; A.asp and B.asp.
in page A.asp it has a link that pops up window B.asp.
my question is: when page B.asp pops up, i want it to show me where it came from.
here's the script in page A.asp
Response.Write("<a href=""B.asp?ID="&conn("id")&""" onClick= ""return popupwin(this,'b')"">Printable version</a>")
i know ServerVariables(HTTP_referer) works but it doesn't work with popup windows.
any ideas?
View Replies
View Related
I am using ASP to open a text file on the server and I want to pass
variables to Javascript. Any suggestions?
For example - I have a text file on the server defining a set of pictures.
I open the text file to retrieve the list of files. I want to pass the list
of files to the Javascript which will then display the data on the client
machine.
View Replies
View Related
I have a web site completely developed with .html pages.
My affiliate and ecommerce system are written in asp, as is the only registration page (register.asp).
If an affiliate sends a visitors to our registration page and the user decides to browse the site before registering we lose track of the affiliate id variable..
..Is there a way to pass a (one) variable between the html pages as the visitor browses the html based site and then have it passed to the registration page (register.asp)?
Also is there a method to set a cookie that retains this variable, and have it set to a one week expiration so that when the visitor returns to the site the most recently refering affiliate gets credit.
If passing of the variable is possible with javascript, can the javascript automatically check for the existence of the aforementioned cookie?
View Replies
View Related
I'm trying to use a javascript function passing a vb variable. I don't understand why it doesn't work. Code:
View Replies
View Related
Has anyone had success passing variable data between ASP scripts and Javascript?
View Replies
View Related
I need to pass a variable from asp to a Javascript function, which gets invoked when the user clicks on a button. Any ideas?
View Replies
View Related
I wanna store a javaScript value in a session variable. so i wanna do something like
<%session("test123")=%> GetE('txtTargetPage').value
I know that is wrong, but how do i do it? I am using hidden for fields in other places
The reason I want to place this one in a session is that what the code is doing is creating a form for the user and if it creates a hidden field it creates it outside the form. so i therefore have to use a session variable. Is this possible?
View Replies
View Related
I have an html form where a serial # is entered and goes to an asp page to determine wether it is a res or comm number, then directs to another form where they can finish entering info to register the serial number. I want the second form to display the serial # entered in the first form. How do I do that??
View Replies
View Related
im trying : <asp:TextBox ToolTip="<% Response.Write(Resource.nl.login.fldUsername); %>" runat="server"></asp:TextBox>
why does it not work, it acts like a literal... while putting it inbetween the tags actually does work... <asp:foo><% Response.Write(Resource.nl.login.fldUsername); %></asp:foo>
weird ?
View Replies
View Related
I have a simple web app that consists of an index.asp page that contains in inline frame and several supporting .asp pages. none of the asp pages really include any asp code.
I am trying to set the session.timeout value in my global.asa under the session_onload sub. I am trying to set the timeout value to 1 minute just for testing purposes. In the end I would like the user to be redirected to a timeout page when he/she clicks on any of the links after the 1 minute timeout has been reached.
View Replies
View Related
value="<% If request("Starting Date") <> "mm/dd/yyyy" Then Response.Write Request("Starting Date") Else Response.Write "mm/dd/yyyy" %>"
View Replies
View Related
I am storing content in a database, and when a text field is updated I am adding a line "Updated by <username> at <date and time>" inside the text field.
Now what I would like to do is to apply a dynamic style to that line by using a span.
<span style="<%=UpdateStyle%>">Updated by <username> at <date and time></span>
where UpdateStyle would be an ASP variable like "font-weight:bold;color:red" etc, so how that line is displayed is amendable at any time from within an include file.
Well obviously using <%=UpdateStyle%> didn't work ... I also tried defining it as a javascript variable and calling it using document.write, but that didn't work either.
View Replies
View Related
I need an inline HTML editor for my ASP pages to modify database content because it's for use with people who don't know how to use HTML.Hopefully it's modifyable to a point because when you make links and what not, you'd have to add "class="contentLink"" in order for the site's css coloring to take effect (hopefully the ASP code or Javascript code allows customizing)
View Replies
View Related
How to attach a file to an email as an inline element ? Code:
objMail.AttachFile Server.MapPath("./path_to/image.gif")
The result:
Content-Type: image/gif;
name="image.gif"
Content-Transfer-Encoding: uuencode
Content-Disposition: attachment;
filename="image.gif"
I'd like the content-disposition to be inline.
View Replies
View Related
What is the best free html/inline editor which supports IE Netscape and Firefox.
View Replies
View Related
I am wanting to create a search page that will search a folder in the company network (unc path) based on a pdf filename (01223233.pdf etc) and open the file in the browser. acrobat will take care of the rest ....
View Replies
View Related
is there any way of passing a javascript variable over to a asp variable so
i can write it to my database.
View Replies
View Related
I have a ASP Page[inline frame in an html page] that does login to a database.
When the user visits the site, the first attempt to login will always failed and session is broken. Login name and password are correct though.
Only when the user re-try agian he/sge is then able to login to the site successfully. Can anyone tell me what could had caused the first time login failure?
View Replies
View Related
Is asp.net similar to vb.net ? What can you create with it ? ,Is there a program you suggest me to use , or even a compiler ?
View Replies
View Related
I need to know where I can get information about learning how to code in ASP. This getting cide snippets and such doesn't work out real well if you don't know what to configure. Also I would like to have my own work not someone elses.
View Replies
View Related
In different examples I've seen different ways to do the same thing, and I want to know what is best (fastest, easiest to remember, same command for all types of stuff, etc)
For example, to get data from a database, should I use:
[VBS]set rs = conn.execute sqlstmt[/VBS]
or
[VBS]rs.Open sqlstmt, conn[/VBS]
or something else?
View Replies
View Related
what can i use to get my server's ASP information, like with PHP you can use:
PHP Code:
<? phpinfo(); ?>
What can i use in ASP?
View Replies
View Related
I have a form that I use a few option selections from DB table and a insert script at the end.I'd like to have access to aditional info from the same table after choose an option
View Replies
View Related
I am trying to retrieve data from a dropdown listbox in asp using:
<%Response.Write + Request.Form("cboBox")%>
The problem is that I only retrieve the first value of the option. For
example, if my first option was <option value=this that>, I only can
retrieve "this". It won't get the second word.
View Replies
View Related
Recently, I came across a site with information to my area of knowledge. The pages have been designed and consist of the .asp extension in the url.
I'm not able to select the text on the web page, either click right mouse button or anything to copy the information. when I'm trying to print it is not perfect.
So, I would like to know from ASP guru's whether there is any way of saving the information on the web pages, so that the same can be formatted in a word document for printing purpose.
View Replies
View Related
My web site is windows authenticated.
When someone connect to my site, I get his SID with a small active X object
which uses OpenProcessToken and GetTokenInformation (token user etc ...
But now, I also need the SID list from AD user object SIDHistory. (when a
user is moved across domain).
View Replies
View Related
I've got a WYSIWYG editor, that runs off a template page (i.e. template.htm) that gets opened in an iFrame for editing.
How can I get it setup so I cange the template at the click of a button? I've tried doing a form with radio buttons, but can't get it to work.
For example, the iframe source has been set to "strTemplate". My form processing was along the lines of:
<%
If request.form "template" = "template1" then
strTemplate = "template1.htm"
Else
strTemplate = "template.htm"
If request.form "template" = "template2" then
strTemplate = "template2.htm"
Else
strTemplate = "template.htm"
End If
End If
%>
View Replies
View Related