Programmers for Hire
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsOtherProgrammers for Hire

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old February 14th, 2007, 09:09 AM
VEDESIGN VEDESIGN is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2007
Posts: 3 VEDESIGN User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 19 m 52 sec
Reputation Power: 0
Unhappy Batman needs Robin

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)

Reply With Quote
  #2  
Old February 15th, 2007, 01:06 PM
boydireland boydireland is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2004
Posts: 4 boydireland User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 m 27 sec
Reputation Power: 0
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

Reply With Quote
  #3  
Old February 16th, 2007, 04:13 AM
P Daffue P Daffue is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2006
Location: South Africa
Posts: 12 P Daffue User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 h 57 m 28 sec
Reputation Power: 0
Send a message via MSN to P Daffue
Cool Robin

Hi there,

I have a lot of experience in ASP, MS ACCESS, SQL Server 2000, HTML, JavaScript and Visual Basic 6

Reply With Quote
  #4  
Old February 17th, 2007, 09:27 AM
VEDESIGN VEDESIGN is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2007
Posts: 3 VEDESIGN User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 19 m 52 sec
Reputation Power: 0
Quote:
Originally Posted by P Daffue
Hi there,

I have a lot of experience in ASP, MS ACCESS, SQL Server 2000, HTML, JavaScript and Visual Basic 6


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

Reply With Quote
  #5  
Old February 17th, 2007, 09:28 AM
VEDESIGN VEDESIGN is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2007
Posts: 3 VEDESIGN User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 19 m 52 sec
Reputation Power: 0
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

Reply With Quote
  #6  
Old February 18th, 2007, 03:43 AM
P Daffue P Daffue is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2006
Location: South Africa
Posts: 12 P Daffue User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 h 57 m 28 sec
Reputation Power: 0
Send a message via MSN to P Daffue
Cool Sample Code

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:
Originally Posted by VEDESIGN
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

Last edited by P Daffue : February 18th, 2007 at 04:27 AM. Reason: Code didnt look like indented. Added code tags

Reply With Quote
  #7  
Old February 18th, 2007, 10:34 PM
umeshgaikwad umeshgaikwad is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2004
Posts: 48 umeshgaikwad User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 h 43 m 42 sec
Reputation Power: 5
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

Reply With Quote
Reply

Viewing: ASP Free ForumsOtherProgrammers for Hire > Batman needs Robin


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway
Stay green...Green IT