|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Hi,
Im a graphic/web designer with coding and db skills, who is looking for somone on ocassion to build update pages for the admin areas of small websites to work with my database and design, to free up my design time. You will be paid of course and I would also offer my design skills to that coder who can uphold a reliable business relationship. Required skills HTML, ASP, ACCESS - maybe SQL2000 or MySql Some of my work (URL address blocked: See forum rules) (URL address blocked: See forum rules) My Skill Photoshop, Imageready, Indesign, Cinema 4D, Flash, dreamweaver, Html, Mysql. If your interested in this partnership. Mail me at (E-Mail address blocked: See forum rules) |
|
#2
|
|||
|
|||
|
Robin has answered the call
Hello
I might be what you are looking for please send me further details as I have experience in Access Oracle SQL Pearl Flash etc I also design develope Host web sites for my own clients but am always interested in new work Regards Boyd Ireland |
|
#3
|
|||
|
|||
|
Hi there,
I have a lot of experience in ASP, MS ACCESS, SQL Server 2000, HTML, JavaScript and Visual Basic 6 |
|
#4
|
|||
|
|||
|
Quote:
Thanks both for replies, I would like to test your knowledge with one quick ASP question Give me a code example of where you display a record set from a datbase but skip record 1 and display 2,3,4 and so on. Thanks ![]() |
|
#5
|
|||
|
|||
|
Thanks both for replies,
I would like to test your knowledge with one quick ASP question Give me a code example of where you display a record set from a datbase but skip record 1 and display 2,3,4 and so on. Thanks |
|
#6
|
|||
|
|||
|
Hi, here is my sample code.
My coding is very neat and adaptable. Code:
<%
Dim cnObj
Dim rsObj
Dim ConnectString
ConnectString = "Provider=SQLOLEDB.1;Server=ServerName;UID=sa;Datab ase=Students"
Set cnObj = CreateObject("ADODB.Connection")
cnObj.Open ConnectString
Set rsObj = CreateObject("ADODB.RecordSet")
sqlSel = "SELECT FirstName FROM Students"
rsObj.Open sqlSel, cnObj
If Not(rsObj.EOF and rsObj.BOF) Then
' Move to the first record in the database
rsObj.MoveFirst
' Move to the next record in the database
rsObj.MoveNext
Response.Write "<table>"
Response.Write " <tr>"
Response.Write " <td>Here is all, except the first student.</td>"
Response.Write " </tr>"
While Not rsObj.EOF
If Not IsNull(rsObj("FirstName")) Then
Response.Write " <tr>"
Response.Write " <td>" & rsObj("FirstName") & "</td>"
Response.Write " </tr>"
End If
rsObj.MoveNext
Wend
Response.Write "</table>"
End If
rsObj.Close
cnObj.Close
Set rsObj = Nothing
Set cnObj = Nothing
%>
Quote:
Last edited by P Daffue : February 18th, 2007 at 04:27 AM. Reason: Code didnt look like indented. Added code tags |
|
#7
|
|||
|
|||
|
Asp Programmer
Hi i have more then 3.5 yrs of experience on ASP / SQL and 1 year on .net
let me know if you are looking for the business relation |
![]() |
| Viewing: ASP Free Forums > Other > Programmers for Hire > Batman needs Robin |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|