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 TouchToneTommy 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: sezme
  • Content: Threads
  • Order by date
  1. sezme

    Netscape 7.1 alert()

    Why wont my alert() work in netscape 7.1 <html><head><title></title> <script language=&quot;javascript&quot;> <!-- alert() //--> </script> <body onLoad=&quot;javascript:alert()&quot;> <a href=&quot;#&quot; onClick=&quot;alert();return false;&quot;>test</a> </body> </html> Newbie to netscape -...
  2. sezme

    www. newbie problem

    If i try to go to my web site using www.mysite.com everything ok however if i use mysite.com everything not ok - (msn dns error) I realise that I should be shot for not using the correct protocols - however my customers dont - i know some sites work like this - why doesn't mine ? can...
  3. sezme

    ASP - File Upload - newbie

    Morning all, I need to create a page where browsers can upload files (pdf) that I will then store in a database. The only problem is, I've never done it before - I've been searching the internet, and cant find any source code. Can anyone give me any pointers - I'm usually pretty good with...
  4. sezme

    asp - sql - newbie question

    i have created a recordset called rs now i would like to use a value returned from this recordset to create another recordset sql = &quot;Select * from table where lID = &quot;& rs(&quot;lID&quot;) my question is this. is this the right way to do this ? will i come across problems later on...
  5. sezme

    javascript version of vbscript's left()

    any ideas
  6. sezme

    javascript - xpath - xml

    I have an xml document that i have loaded into ie var xmlDoc = new ActiveXObject(&quot;msxml2.DOMDocument.3.0&quot;); xmlDoc.async = false;xmlDoc.resolveExternals = false;xmlDoc.validateOnParse = false; xmlDoc.load(&quot;area.xml&quot;); I then run a xpath query on it att = Area value = 20 var...
  7. sezme

    fun with sql and request.querystring ;o)

    I am having trouble accessing data Dim Ex = Request.Querystring(&quot;x&quot;) sql = &quot;Select * from Exp Where ExKey = '&quot; & Ex & &quot;'&quot; this works fine unless there is no 'x' querystring - then the sql statement will return data where ExKey = 0 - why should this do this ...
  8. sezme

    insert - update recordset question - newbie

    which method is best Insert Into Table (Field) Values ('String') or set rs = db.openRecordSet(&quot;select * from Table where 0 <> 0&quot;) rs.addnew rs!Field = 'String' rs.update Newbie question
  9. sezme

    newbie sql question

    I have a select statement Select dbID, dbName From dbTable what i want to do is only dbName when it has a value ie when it is not empty I have tried Select dbID, dbName From dbTable Where dbName Is Not Null but no success thanks in advance
  10. sezme

    using variable to call function

    Not sure if this is possible function test(){ alert(&quot;It works&quot;) } i want to be able to store the name in a variable var temporary = test and be able to call the function document. blah blah blah can I do this - does anyone have any syntax Thanks in advance
  11. sezme

    Beginner sql server question

    I have a simple table that i want to insert a new record into field 1 is the primary key field 2 is the value when i insert the record into field 2 how to i add a new primary key number into field 1 (im used to access where you can use autonumber) primary key datatype is smallint thanks in...

Part and Inventory Search

Back
Top