Im prinzip eine ganz simple Sache:
In ASP:

<% Set RS=Server.CreateObject("ADODB.Recordet")
StrConn = "....."
StrSQL = "Select * From MyTbl"
RS.Open StrSql, StrConn
While not rs.eof
        Response.write RS("MeinFeld")
        Rs.movenext
Wend
Rs.Close
%>

Wie m��te das in ASP.net aussehen?
Welche Bibliotheken mu� ich einbinden?

Stefan.

_______________________________________________
Coffeehouse Mailingliste, Postings senden an:
[email protected]
An-/Abmeldung und Suchfunktion unter:
http://www.glengamoi.com/mailman/listinfo/coffeehouse

Antwort per Email an