Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: sabavno
  • Order by date
  1. sabavno

    Problem with the pasted text

    Vragabond, You were right. Your tip helped me solve this issue. Thanks a lot!!! LookingForInfo, thank you again for all your help too.
  2. sabavno

    Problem with the pasted text

    LookingForInfo, I have tried all your methods, did not seem to work... first two passed the blank, <input type='hidden' NAME="name2" id="text" ROWS="7" COLS="65" wrap=off Value = '<%Response.write(name2%>' /> would cut off the text, I guess the text box lenght is limited. The example of the...
  3. sabavno

    Problem with the pasted text

    Oh, I am sorry, it's just for my testing purposes here, I have changed style='display: none' to style='display: block'
  4. sabavno

    Problem with the pasted text

    Yes, I then put strText into the hidden textarea to pass it to the next page <TEXTAREA style='display: block' NAME="name2" id="text" ROWS="7" COLS="65" wrap=off Value = '<%Response.write(name2)%>'>
  5. sabavno

    Problem with the pasted text

    I can't send the link (it's an Intranet page) and there is no code that would show the content of the textarea box on the second page the only thing I do is I capture the value into the variable as I show before (strText = request.form("name2"))
  6. sabavno

    Problem with the pasted text

    First page: <form method="post" action="order4.asp" onSubmit="return ValidateFields()" name="form1"> ...... <TEXTAREA NAME="name2" ROWS="7" COLS="65" wrap=off></TEXTAREA> ...... </form> Next page (order4.asp) strText = request.form("name2") <form method="post" action="order5.asp"...
  7. sabavno

    Problem with the pasted text

    well, next page is the continuation of the user form, I pass the values caputered in the form from one page to another....
  8. sabavno

    Problem with the pasted text

    Hi, I have a text box on my form <TEXTAREA NAME="name2" ROWS="7" COLS="65" wrap=off></TEXTAREA> The problem is when someone instead of typing, pastes some text (say e-mail) and proceeds to the next page, the pasted text is converted into the HTML and is displayed on the next page (which...
  9. sabavno

    User Info from registry

    Hi, I was wondering if it is possible to capture the user login from my asp page. I tried to use Set n = Server.CreateObject("WScript.Network") Response.Write n.UserName Set n = Nothing But since the code executes on the remote server, I get that server's user name, instead of the...
  10. sabavno

    Check all check boxes on the form

    How to check all check boxes on the form without referring to their names and not knowing how many of them are present on the form? Thanks.
  11. sabavno

    Retrieve data from the database without submit()

    Hi, Please help me here with my knowledge gap. From what I know, I can only access the database and retrieve the data on the form's Submit event. I can either submit the form to itself to stay on the same page or submit it to another page. So, I guess my question is how can I trigger...
  12. sabavno

    Populate list box with the values from the recordset

    Hi, I have a recordset that returns three columns params="Select LastName, FirstName, Initial from Names" Set rs = db1.Execute(get_params) Is it possible to populate the list box with the values from the recordset so that the list would contain the following entries: Smith, John (JS) Smith...
  13. sabavno

    Tooltip for each entry in the list box

    Hi, I am looking for the solution to display a separate tooltip for each entry in the list box showing up once the entry is selected. Since "title" attribute and onMouseOver event would not help in this case, I was wondering if there are any other options out there. Thanks in advance.
  14. sabavno

    Server Renamed

    Hi, Our server has been renamed and the IP address changed. Now, the webpages that reside on that server are not accessible by their old address e.g. http://servername.domain.index.asp They are however accessible by server's IP address. e.g. http://2342.3423.23423/index.asp How do reconfigure...
  15. sabavno

    Excel Macro

    Hi, I am looking for the hints on how to write the following macro in Excel. The is a huge spreadsheet containing the serial numbers along with other information. I want to prompt the user for the Serial Number, then make the cell with the matched serial number active, look up the information...
  16. sabavno

    How to retrieve the client's machine info

    User's login information....name/domain
  17. sabavno

    How to retrieve the client's machine info

    Hi, I need help with retrieving the user information from the client's machine. When I run the following code, it returns the server's information rather than the machine's from which the asp page was open. Set n = Server.CreateObject("WScript.Network") UserName=n.UserName Please advise...
  18. sabavno

    How to use CDONTS.NewMail

    Hi, I am creating an ASP page from which I need to send the email. My question is do I need to configure the server in order to use CDONTS.NewMail? So far, whenever I tried to use this object, I couldn't sent the email. Also, is there a way to get the user's information from the Outlook...
  19. sabavno

    Populate combo boxes with today date

    Hi, I have three combo boxes on my form. First contains the month selection, second - day's, third - year. (E.g. &lt;SELECT NAME=RelMonth&gt; &lt;OPTION VALUE=1&gt;Jan &lt;OPTION VALUE=2&gt;Feb &lt;OPTION VALUE=3&gt;Mar &lt;OPTION VALUE=4&gt;Apr &lt;OPTION VALUE=5&gt;May &lt;OPTION...
  20. sabavno

    How not to reload a page on BACK

    Hi, I have a little form with a few tables that are whether hidden or visible depending on the choice selected in the combo box. By defaul, on the page load it is only one table that is visible. What I want to achieve is when user makes a certain selection in the combo box and the hidden table...

Part and Inventory Search

Back
Top