If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > ASP.net connection Code Problems

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-21-06, 21:09
ahmed_zedan ahmed_zedan is offline
Registered User
 
Join Date: Dec 2004
Posts: 11
ASP.net connection Code Problems

I am working on Microsoft access that have liked tabled to SQL, I want to develop an ASP page to update and add and evaluate data in the SQL database.
A sample code of what I use in access is:

The SQL database name is Ichrdfinance
The SQL server name is AHMEDLAB\AHMED

Code:
Dim db As Database
    Dim rs As Recordset
    Set db = CurrentDb
    Dim ASD As String
    Dim UN As String
    UN = QLName.Value
    ASD = STNamesList.Value
    crit = "SELECT [qlist].* FROM [qlist]"
    Set rs = CurrentDb.OpenRecordset(crit, dbOpenDynaset, dbSeeChanges)
    If rs.RecordCount > 0 Then
    rs.MoveFirst
    End If
    rs.FindFirst "stn = " & ASD
    If rs.NoMatch Then
    Beep
    rs.AddNew
    rs!STN = STNamesList.Value
    rs!Uname = UN
    rs.Update
    rs.Close
can any one can help me converting this code to ASP.net, I am working on Microsoft visual web developer 2005 express edition.
Reply With Quote
  #2 (permalink)  
Old 01-22-06, 12:14
Teddy Teddy is offline
Purveyor of Discontent
 
Join Date: Mar 2003
Location: The Bottom of The Barrel
Posts: 6,075
__________________
oh yeah... documentation... I have heard of that.

*** What Do You Want In The MS Access Forum? ***
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On