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 Mike Lewis 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: *

  1. DaHapMan

    Basic Authentication when Server API = CGI

    thnx ! I could have found that myself... Next time I go to php.net BEFORE I post something :) DaHapMan
  2. DaHapMan

    Basic Authentication when Server API = CGI

    I use basic authentication like this: if (!isset($_SERVER['PHP_AUTH_USER'])) { header('HTTP/1.0 401 Unauthorized'); header('WWW-Authenticate: Basic realm=&quot;My Realm&quot;'); echo 'Text to send if user hits Cancel button'; exit; } else { echo &quot;<p>Hello...
  3. DaHapMan

    Saving Diagram in electronic format?

    If you use Visual Studio .NET to edit the diagram, you can use the option &quot;Copy Diagram to Clipboard&quot; in the Edit-menu.
  4. DaHapMan

    whereclause based on alias Or columnnumber

    thanx! exactly what I needed :)
  5. DaHapMan

    whereclause based on alias Or columnnumber

    Hi there, Is it possible to build a where-clause based on column-aliases or based on column-number? e.g. SELECT col1 as [column1] , col2 as [column2] FROM tblTable WHERE [column1] = N'%aa%' OR SELECT col1 as [column1] , col2 as [column2] FROM tblTable WHERE 1 = N'%aa%' Hope...
  6. DaHapMan

    SQL Insert - Two Records Added with 1 Submit

    Did you tried to use a response.redirect after inserting? A long time ago I also had a problem with Netscape, cause it loaded the page twice. After a redirection everything worked fine. But I still don't know why it was loaded twice. Your ASP-code looks fine to me. Hope the redirection will...
  7. DaHapMan

    SQL Insert - Two Records Added with 1 Submit

    I think it's more clear for us when you post the code..
  8. DaHapMan

    calling a function from opener window

    you can access the opener with &quot;window.opener.etc&quot; hope that's enough
  9. DaHapMan

    LPAD and RPAD in SQL Server

    thnx .. that's what I needed Regards, DaHapMan
  10. DaHapMan

    LPAD and RPAD in SQL Server

    Oracle and MySQL can deal with the RPAD- and LPAD-functions, but SQL Server cannot! Is there a similar function to do the same ?? What I want is a query with fixed sized columns. for example: table TEST ---------- id int name nvarchar 10 When querying this table I want the field name 15...
  11. DaHapMan

    Mail without using Outlook/Exchange

    yes.. the mailprofile is made under the same user as the servers &quot;service account&quot;. I get the message &quot;mail sent&quot; .. but nothing is send till I open Outlook as that &quot;ServiceAccount-User&quot;! I don't know what to do next.. Someone said: you have to change the...
  12. DaHapMan

    Mail without using Outlook/Exchange

    Hi there, I've got a problem... My procedures must have the possibility to send mail. So I tried to configure SQL MAIL. Well .. it all works fine BUT I have to keep MS Outlook running otherwise the mail is not send. I don't want to keep a program running at the back... is it possible to...
  13. DaHapMan

    execute $var ?

    Jeee .. thanx! maybe it isn't such a bad idea to read through the whole manual ... [rednose]
  14. DaHapMan

    execute $var ?

    I was wondering .. is it possible to execute the value of a var ??? like: $a = &quot;echo hello world;&quot; $a; note: this doesn't work :) Does anyone know : I) Is it possible to do such thing ? II) How to do such thing ? Thnx .. DaHapMan
  15. DaHapMan

    style of &lt;select&gt; - box

    U mean .. there is no way to change the arrow-part rather then change it to a piece of JavaScript?
  16. DaHapMan

    Off topic but someone please help..

    Wullie, www.freshlookdesign.co.uk is a site dealing a &quot;professional design service&quot; ... the other domain: www.findhere.com is linked to &quot;LOCALHOST&quot; ! so, my own site came up here :) DaHapMan
  17. DaHapMan

    style of &lt;select&gt; - box

    I want to customize a select-box. I know that I can use CSS to change the color of the dropdownlist. Also font- and width-changes are possible .. BUT, is it also possible to change the color of the little arrow on the right? The following doesn't work: scrollbar-shadow-color: #0099FF...
  18. DaHapMan

    those darn quote's ...

    That last post was mine ... :o) Don't know why the name is cliche?! whatever ...
  19. DaHapMan

    those darn quote's ...

    those darn quote's ... I got some data from a database, like This Is An &quot;EXAMPLE&quot; Text The word 'example' is surrounded with &quot;&quot; .. now what's my problem? I want to show it in a text-field!!! <input type=&quot;text&quot; value=&quot;<%=strExample%>&quot;> But this results...
  20. DaHapMan

    recordset returning only zeros

    What did you use as Query?

Part and Inventory Search

Back
Top