Recent content by shuli

  1. S

    Dsn

    Hi, this is the file page5.asp <!--#include file="dsn.asp"--> <% dim first,last first=Request.QueryString("fname") last=Request.QueryString("lname") score=Request.QueryString("totalscore") set c=Server.CreateObject("adodb.connection") c.Open dsn 'Set rs =...
  2. S

    Dsn

    Well... haven't solved my problem yet... If anyone will have an idea... here is a simple code (from here http://support.microsoft.com/kb/q188713/) but when it gets to the last line(update) , there is an error on the page. Set rs = Server.CreateObject("ADODB.Recordset") rs.Open...
  3. S

    Dsn

    I'll do that. Thank you.
  4. S

    Dsn

    Here, now I was trying this example http://www.awprofessional.com/articles/article.asp?p=21642&seqNum=3&rl=1 and I got the message: [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query. relating to the line: MyConn.execute("insert into grades " &...
  5. S

    Dsn

    Thank you Stephen and KCWebMonkey for your help, I do manage to connect to DB without using dsn. However, for some reason, I still can't insert a record to the DB... For example, if I use the code given here http://www.aspwebpro.com/aspscripts/records/insertnew.asp I am stuck with the line...
  6. S

    Dsn

    Hello everyone, I have a DB project in ASP to do, I am a beginner, and I am stuck in a problem. I will apprecuate it very much if anyone that can help would do that. We are working with a web server in which DSN is not installed. (Is it necessary to install it?) I have been searching the...
Back
Top