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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rollout369

  1. rollout369

    Can't see folders when saving a new document

    I have a problem with a FrontPage web. Everything works fine but when I try to save a new page, or do a Save As to an existing page, the folders aren't listed in the Save window. For example, when I'm in the root folder, I create a new page. When I click Save, the Save As box appears with the...
  2. rollout369

    absolute middle

    All you need to do is to put all of the content inside a table, and set the alignment for the table cell, something like this: <table width="100%" height="100%" border="0" align="center"> <tr> <td align="center" valign="middle">Content goes here</td> </tr> </table>...
  3. rollout369

    Send mail as plain text in Exchange 2003?

    We recently moved up to Exchange 2003. In the web interface, is there a way to send messages as plain text? It appears that if you log-in as a Basic client, Exchange sends the mail in plain text, but if you log-in as a Premium client, all mail gets sent in RTF or HTML. Is there a way for the...
  4. rollout369

    Entering Time

    A simple way to do it is to create a separate drop down for the hour, minute, AM/PM. Then, in your ASP page, you would combine those three fields before entering them into the date field of your database. For example, in the ASP page: strTime = Request.Form("hour") & ":" &...
  5. rollout369

    code a submit button to email to multiple people

    You might want to post this question in a different forum. If you're using ASP to process the form, post it in the Mocirosft: Active Server Pages (ASP) forum. ========================= rollout =========================
  6. rollout369

    Ghost folders

    I've never seen anything like that on any of my servers. You might want to run an anti-virus program or Stinger to see what turns up: http://vil.nai.com/vil/stinger/ ========================= rollout =========================
  7. rollout369

    Image from database name

    I think the problem stems from how you are storing the address in the database. When the user goes to your page, the html code is going to be written so that the image will be looked for on the users' C:\ drive, not on the server's. I have a database that does the same thing you are doing...
  8. rollout369

    Setting up a web site online...

    First you have decide who is going to host the site. You can outsource this (there are many hosting companies) or do it in-hous. If you decide to do it your self, you'll need: 1. A static IP for your hosting computer 2. The hosting computer will need the static IP and server software (i.e...
  9. rollout369

    Displaying a MessageBox

    Message boxes ARE available through ASP.Net. This is how you can have the validation summary appear in a message box: <asp:ValidationSummary HeaderText="The following errors were found" DisplayMode="List" ShowMessageBox = "True" runat="server" > ========================= rollout...
  10. rollout369

    Newbie Help

    How are you looking at the page in the browser? You can't just preview it in the browser; you must go to the proper url for your machine, something like: http://127.0.0.1/myaspxpage.aspx ========================= rollout =========================
  11. rollout369

    Icon associated with website question???

    You need to create an icon file called favicon.ico and put it into your root directory. ========================= rollout =========================
  12. rollout369

    Binding two database fields to one label?

    Thanks, but if I'm not mistaken that's how I would do it in a web page. What about within a vb.net program? ========================= rollout =========================
  13. rollout369

    Binding two database fields to one label?

    I'm very new to visual studio (first day) and I've run into my first problem. I've created a form and have bound some textboxes and labels to database fields. What I want to do is to bind the &quot;firstname&quot; and &quot;lastname&quot; database fields to one label. My motive to do this is so...
  14. rollout369

    Carriage Return: chr(13) in an email

    You can also use this: vbNewLine ========================= rollout =========================
  15. rollout369

    Close Page coding assistance

    This works for me and can be changed to an image: <p align=&quot;center&quot;><font face=&quot;Verdana, Arial, Helvetica&quot; size=&quot;1&quot;><a href=&quot;javascript:window.close();&quot;>Close This Window</a></font></p> ========================= rollout =========================

Part and Inventory Search

Back
Top