Hello Friends, I am girish. In my application at one place I need to assign session variables to javascript variable which I am usng as a client side...
Hello Friends, I am facing a problem that, I have a textarea and when I enter some text in that & display it on the browser all the formatting is destroyed. I...
Hi Girish, I had the exact same problem and found very, very little knowledge about it on the internet. Then through a discussion with a colleague, it was ...
Try this in your Javascript code: var strJSVariable = <%=strASPVariable%> Mark girish nehte <brain7822@...> wrote: Hello Friends, I am girish. In my...
Oops... I just noticed this is the *Classic* list, not the ASP.NET list! myText = Replace(myText, vbCrLf, "<br />") myText = Replace(myText, " ", " ") ...
If you're only concerned about carriage returns and spaces, you can do something like this: myText = myText.replace(vbCrLf, "<br />") myText = myText.replace("...
Hii...friend I have some problem whit my data. I have ASP program in server, and then the program is acces by 10 client computers. all of client computers...
Hi, I have one ASP Project, developed by some other person. I am a .Net developer. But i have to handle the existing ASP Project and have to add one more asp...
Ok what include virtual does is take the root of the webapplication and starts there looking for the include file. so that would be: virtual directory / iis...
I have a asp form. It has quite a bit going on. After the server- side validation happens and a user hits confirm, the page creates a row in a table (sql...
1) Server recycled causes loss 2) Form load... Session("Alive") = 1 ..... Form Post: If (Session("Alive") <> 1) ' You know you lost your session.. Steve Radich...
I'm new to asp and am trying to create a survey form. Can someone look at this code for me? I want to have it so that only one "Submit" button is used at the...
... Sessions are fine for non object data (text, numbers) like in the example: http://www.learnasp.com/freebook/asp/statesessions.aspx The big disaster is when...
Hello friends, I have an application in which there is a mail utility in which i send mails to the members. But I want when I send the email the email should...
I am very new to asp. When the user logs in, it captures there username and password. I would like to create a who modifed on the edit page so that the manager...
Hi there, I am so glad I bought Scott Mitchell's Designing Active Server Pages. That is where I learned about LearnASP.com. I have a database that is created...
Hello everyone, I am new to Classical ASP. I am trying to implement dependant dropdown boxes between 5 dropdown box in the following way: Drpdown 1 --populates...
Hi,
try this
http://learnasp.com/freebook/asp/SQLandor.aspx
it's not mine, it's Charles'
i copied from this mailing list with the subject dropdown with...
Agoes
untuk_milis_lagi@...
Jul 11, 2006 3:27 am
7634
Hi Tgmiller,
Yes, you can use session to do it.
after checked the login and if the login was correct,
put the username to the session.
e.g...
Agoes
untuk_milis_lagi@...
Jul 11, 2006 3:32 am
7635
hello everyone, i am showing folders name in a table & when click on this we can open or downlaod this folder. but i want in my page folders must be show in...
Hi friends, I have a proble that I have to send mails through Outlook Express using asp classic. Please tell me what can be done. In my registry editor i...
Hello friends, I have created an application in which I have provided an issue box. in which the title of the issue is hyperlinked. I need that if an issue is...
Are you storing a flag or a count or something in the database to tell you whether that issue has been read? If so, just use a conditional if... then......
This can be done using CSS: A:visited { COLOR: #000066; FONT-WEIGHT: bold } ... From: girish nehte To: AspClassicAnyQuestionIsOk@yahoogroups.com Sent:...
Hello, Can we handle the url in javascript? Suppose we are on a page www.anything.com is it possible to take this url name in a variable using javascript and...
i want to download a file from remote PC to loacal. so How can do this(by single type the file name in text box and click on download button)? Can somebody...
Hi Everyone, Is it possible to have an aspx file in an asp application? The asp application is hosted on Windows 2003 server with IIS 6.0. The purpose is to...