Get An Instant Quote >>>
Simply fill in the short quote form to see an instant quotation for your Kensington airport transfer.
Kensington Transfer Prices..
| Heathrow from £30.00 |
| Gatwick from £55.00 |
| Stanstead from £56.00 |
| Luton from £63.00 |
| City from £37.00 |
| Southend from £75.00 |
<%
'--------------------------------------------------------------------
' Microsoft ADO
'
' (c) 1996 Microsoft Corporation. All Rights Reserved.
'
'
'
' ADO constants include file for VBScript
'
'--------------------------------------------------------------------
'---- CursorTypeEnum Values ----
Const adOpenForwardOnly = 0
Const adOpenKeyset = 1
Const adOpenDynamic = 2
Const adOpenStatic = 3
'---- CursorOptionEnum Values ----
Const adHoldRecords = &H00000100
Const adMovePrevious = &H00000200
Const adAddNew = &H01000400
Const adDelete = &H01000800
Const adUpdate = &H01008000
Const adBookmark = &H00002000
Const adApproxPosition = &H00004000
Const adUpdateBatch = &H00010000
Const adResync = &H00020000
Const adNotify = &H00040000
'---- LockTypeEnum Values ----
Const adLockReadOnly = 1
Const adLockPessimistic = 2
Const adLockOptimistic = 3
Const adLockBatchOptimistic = 4
'---- ExecuteOptionEnum Values ----
Const adRunAsync = &H00000010
'---- ObjectStateEnum Values ----
Const adStateClosed = &H00000000
Const adStateOpen = &H00000001
Const adStateConnecting = &H00000002
Const adStateExecuting = &H00000004
'---- CursorLocationEnum Values ----
Const adUseServer = 2
Const adUseClient = 3
'---- DataTypeEnum Values ----
Const adEmpty = 0
Const adTinyInt = 16
Const adSmallInt = 2
Const adInteger = 3
Const adBigInt = 20
Const adUnsignedTinyInt = 17
Const adUnsignedSmallInt = 18
Const adUnsignedInt = 19
Const adUnsignedBigInt = 21
Const adSingle = 4
Const adDouble = 5
Const adCurrency = 6
Const adDecimal = 14
Const adNumeric = 131
Const adBoolean = 11
Const adError = 10
Const adUserDefined = 132
Const adVariant = 12
Const adIDispatch = 9
Const adIUnknown = 13
Const adGUID = 72
Const adDate = 7
Const adDBDate = 133
Const adDBTime = 134
Const adDBTimeStamp = 135
Const adBSTR = 8
Const adChar = 129
Const adVarChar = 200
Const adLongVarChar = 201
Const adWChar = 130
Const adVarWChar = 202
Const adLongVarWChar = 203
Const adBinary = 128
Const adVarBinary = 204
Const adLongVarBinary = 205
'---- FieldAttributeEnum Values ----
Const adFldMayDefer = &H00000002
Const adFldUpdatable = &H00000004
Const adFldUnknownUpdatable = &H00000008
Const adFldFixed = &H00000010
Const adFldIsNullable = &H00000020
Const adFldMayBeNull = &H00000040
Const adFldLong = &H00000080
Const adFldRowID = &H00000100
Const adFldRowVersion = &H00000200
Const adFldCacheDeferred = &H00001000
'---- EditModeEnum Values ----
Const adEditNone = &H0000
Const adEditInProgress = &H0001
Const adEditAdd = &H0002
Const adEditDelete = &H0004
'---- RecordStatusEnum Values ----
Const adRecOK = &H0000000
Const adRecNew = &H0000001
Const adRecModified = &H0000002
Const adRecDeleted = &H0000004
Const adRecUnmodified = &H0000008
Const adRecInvalid = &H0000010
Const adRecMultipleChanges = &H0000040
Const adRecPendingChanges = &H0000080
Const adRecCanceled = &H0000100
Const adRecCantRelease = &H0000400
Const adRecConcurrencyViolation = &H0000800
Const adRecIntegrityViolation = &H0001000
Const adRecMaxChangesExceeded = &H0002000
Const adRecObjectOpen = &H0004000
Const adRecOutOfMemory = &H0008000
Const adRecPermissionDenied = &H0010000
Const adRecSchemaViolation = &H0020000
Const adRecDBDeleted = &H0040000
'---- GetRowsOptionEnum Values ----
Const adGetRowsRest = -1
'---- PositionEnum Values ----
Const adPosUnknown = -1
Const adPosBOF = -2
Const adPosEOF = -3
'---- enum Values ----
Const adBookmarkCurrent = 0
Const adBookmarkFirst = 1
Const adBookmarkLast = 2
'---- MarshalOptionsEnum Values ----
Const adMarshalAll = 0
Const adMarshalModifiedOnly = 1
'---- AffectEnum Values ----
Const adAffectCurrent = 1
Const adAffectGroup = 2
Const adAffectAll = 3
'---- FilterGroupEnum Values ----
Const adFilterNone = 0
Const adFilterPendingRecords = 1
Const adFilterAffectedRecords = 2
Const adFilterFetchedRecords = 3
Const adFilterPredicate = 4
'---- SearchDirection Values ----
Const adSearchForward = 1
Const adSearchBackward = -1
'---- ConnectPromptEnum Values ----
Const adPromptAlways = 1
Const adPromptComplete = 2
Const adPromptCompleteRequired = 3
Const adPromptNever = 4
'---- ConnectModeEnum Values ----
Const adModeUnknown = 0
Const adModeRead = 1
Const adModeWrite = 2
Const adModeReadWrite = 3
Const adModeShareDenyRead = 4
Const adModeShareDenyWrite = 8
Const adModeShareExclusive = &Hc
Const adModeShareDenyNone = &H10
'---- IsolationLevelEnum Values ----
Const adXactUnspecified = &Hffffffff
Const adXactChaos = &H00000010
Const adXactReadUncommitted = &H00000100
Const adXactBrowse = &H00000100
Const adXactCursorStability = &H00001000
Const adXactReadCommitted = &H00001000
Const adXactRepeatableRead = &H00010000
Const adXactSerializable = &H00100000
Const adXactIsolated = &H00100000
'---- XactAttributeEnum Values ----
Const adXactCommitRetaining = &H00020000
Const adXactAbortRetaining = &H00040000
'---- PropertyAttributesEnum Values ----
Const adPropNotSupported = &H0000
Const adPropRequired = &H0001
Const adPropOptional = &H0002
Const adPropRead = &H0200
Const adPropWrite = &H0400
'---- ErrorValueEnum Values ----
Const adErrInvalidArgument = &Hbb9
Const adErrNoCurrentRecord = &Hbcd
Const adErrIllegalOperation = &Hc93
Const adErrInTransaction = &Hcae
Const adErrFeatureNotAvailable = &Hcb3
Const adErrItemNotFound = &Hcc1
Const adErrObjectInCollection = &Hd27
Const adErrObjectNotSet = &Hd5c
Const adErrDataConversion = &Hd5d
Const adErrObjectClosed = &He78
Const adErrObjectOpen = &He79
Const adErrProviderNotFound = &He7a
Const adErrBoundToCommand = &He7b
Const adErrInvalidParamInfo = &He7c
Const adErrInvalidConnection = &He7d
Const adErrStillExecuting = &He7f
Const adErrStillConnecting = &He81
'---- ParameterAttributesEnum Values ----
Const adParamSigned = &H0010
Const adParamNullable = &H0040
Const adParamLong = &H0080
'---- ParameterDirectionEnum Values ----
Const adParamUnknown = &H0000
Const adParamInput = &H0001
Const adParamOutput = &H0002
Const adParamInputOutput = &H0003
Const adParamReturnValue = &H0004
'---- CommandTypeEnum Values ----
Const adCmdUnknown = &H0008
Const adCmdText = &H0001
Const adCmdTable = &H0002
Const adCmdStoredProc = &H0004
'---- SchemaEnum Values ----
Const adSchemaProviderSpecific = -1
Const adSchemaAsserts = 0
Const adSchemaCatalogs = 1
Const adSchemaCharacterSets = 2
Const adSchemaCollations = 3
Const adSchemaColumns = 4
Const adSchemaCheckConstraints = 5
Const adSchemaConstraintColumnUsage = 6
Const adSchemaConstraintTableUsage = 7
Const adSchemaKeyColumnUsage = 8
Const adSchemaReferentialContraints = 9
Const adSchemaTableConstraints = 10
Const adSchemaColumnsDomainUsage = 11
Const adSchemaIndexes = 12
Const adSchemaColumnPrivileges = 13
Const adSchemaTablePrivileges = 14
Const adSchemaUsagePrivileges = 15
Const adSchemaProcedures = 16
Const adSchemaSchemata = 17
Const adSchemaSQLLanguages = 18
Const adSchemaStatistics = 19
Const adSchemaTables = 20
Const adSchemaTranslations = 21
Const adSchemaProviderTypes = 22
Const adSchemaViews = 23
Const adSchemaViewColumnUsage = 24
Const adSchemaViewTableUsage = 25
Const adSchemaProcedureParameters = 26
Const adSchemaForeignKeys = 27
Const adSchemaPrimaryKeys = 28
Const adSchemaProcedureColumns = 29
%>
<%
On Error Resume Next
strDatabaseUser = "uc_web_91731"
strDatabasePassword = "oh8329HkK!dugdh83ifbvyrqjs"
strL2ADSN = "DRIVER={MySQL ODBC 5.1 Driver}; SERVER=213.171.200.103; DATABASE=uc_db; " & _
"UID=" & strDatabaseUser & ";PASSWORD=" & strDatabasePassword & "; OPTION=3"
dim dbL2A
dim rsPrimary
dim rsSecondary
dim strSQL
'Open the database
if strDatabasePassword<>"" then
set dbL2A=server.createobject("adodb.connection")
dbL2A.CommandTimeOut=20
dbL2A.Open strL2ADSN
end if
%>
<%
Function sanitizeRequest (requestVariable,requestType)
Set regEx = New RegExp
regEx.Global = true
regEx.Pattern = "[^0-9a-zA-Z\@\w\.\,\-\_\b\r\ \-]"
IF requestType = "querystring" THEN
sanitizeRequest = regEx.Replace(request.querystring(requestVariable), "")
ELSEIF requestType = "form" THEN
sanitizeRequest = regEx.Replace(request.form(requestVariable), "")
ELSEIF requestType = "cookie" THEN
sanitizeRequest = regEx.Replace(request.cookies(requestVariable), "")
ELSEIF requestType = "string" THEN
sanitizeRequest = regEx.Replace(requestVariable, "")
END IF
End Function
Function PCase(strInput)
Dim arrWords
Dim intWord
arrWords = Split(strInput, " ")
For intWord = LBound(arrWords) To UBound(arrWords)
arrWords(intWord) = UCase(Left(arrWords(intWord), 1)) _
& LCase(Mid(arrWords(intWord), 2))
Next
PCase = Join(arrWords, " ")
End Function
Function getDriverDetails(strdriver)
IF strdriver <> "" AND IsNumeric(strdriver) THEN
SET rsDriver = dbL2A.Execute("SELECT firstname, surname, vehicletype FROM drivers WHERE driverID='"&strdriver&"' limit 1")
DO WHILE NOT rsDriver.EOF
getDriverDetails = rsDriver("firstname") & " " & rsDriver("surname") & " » " & rsDriver("vehicletype")
rsDriver.MoveNext
loop
rsDriver.Close
SET rsDriver = Nothing
ELSE
Exit Function
END IF
End Function
Function getDriverName(strdriver)
IF strdriver <> "" AND IsNumeric(strdriver) THEN
SET rsDriver = dbL2A.Execute("SELECT firstname, surname FROM drivers WHERE driverID='"&strdriver&"' limit 1")
DO WHILE NOT rsDriver.EOF
getDriverName = rsDriver("firstname") & " " & rsDriver("surname")
rsDriver.MoveNext
loop
rsDriver.Close
SET rsDriver = Nothing
ELSE
Exit Function
END IF
End Function
Function cvtStation(tVal)
IF tVal <> "" THEN
oVal = tVal
tVal = LCase(tVal)
SET rsCvtStation = dbL2A.Execute("SELECT stationNAME, stationPOSTCODE FROM stations WHERE stationVALUE='"&tVal&"' limit 1")
IF rsCvtStation.EOF THEN
cvtStation = oVal
END IF
DO WHILE NOT rsCvtStation.EOF
cvtStation = rsCvtStation("stationPOSTCODE")
rsCvtStation.MoveNext
loop
rsCvtStation.Close
SET rsCvtStation = Nothing
ELSE
Exit Function
END IF
End Function
Function cvtAirport(tVal)
IF tVal <> "" THEN
oVal = tVal
tVal = LCase(tVal)
SET rsCvtAP = dbL2A.Execute("SELECT airportNAME, airportPOSTCODE FROM airports WHERE airportVALUE='"&tVal&"' limit 1")
IF rsCvtAP.EOF THEN
cvtAirport = oVal
END IF
DO WHILE NOT rsCvtAP.EOF
cvtAirport = rsCvtAP("airportPOSTCODE")
rsCvtAP.MoveNext
loop
rsCvtAP.Close
SET rsCvtAP = Nothing
ELSE
Exit Function
END IF
End Function
%>
MINICABS IN KENSINGTON SW7Our Kensington car services are on-time and reliable

United Minicabs are a fast, professional and reliable taxicab service based near Kensington and are ready to accomodate all your
travel needs. We have a dedicated team serving 24 hours a day seven days a week,
taking you to any of the popular locations in Kensington such as the Serpentine gallery, Royal college of Art,
Hyde Park, Natural History Museum, Kensington Palace, Royla Albert Hall, The Victoria and Albert Museum and many more...
If you need somewhere to rest or a bite to eat, we can transport you anywhere to help you find the best hotels and
eateries in and around Kensington like Holiday Inn, Mowbray Court, The Bailey's, Radisson Blue Edwardian,
The Queens Gate, The Pelham and many others in the area. Depending on your taste buds, Kensington is home to a wide
and diverse collection of fine dining and popular restaurants such as Il Portico, Pizzicotto, Tendido Cero,
Min Jiang, Launceston Place and more. Kensington is a culturally rich, affluent and vibrant borough, where you migh
want to explore it's many attractions. There is Buckingham Palace, the broad and exciting events
of Olympia, Cine Lumiere, The Gate cinema, Opera Holland Park, The Print Room, Finborough Theatre and don't miss out
on the yearly Notting hill Carnival event, exploring the dazzling colours, music, entertainment and delicious delicacies.
Whether you pre-order the simple door-to-door taxicab or executive service for your business needs, we are a call or
a click way to serve all your transportation needs.
Our local Kensington taxi service can provide a complete range of vehicles from a simple door to door cab to an executive car service suitable for businesses
and professionals who are based in the Kensington area. We also offer corporate account facilities as well as a private transfer service suitable to hospital patients and visitors, for more information
about our Kensington taxi services please get in touch with us.

KENSINGTON AIRPORT TRANSFERS BY TAXITo or From Heathrow, Gatwick, Stansted, Luton or London City
Our Kensington airport transfer service is available to or from all of London’s major airports. Travelling to and from an airport can be stressful, especially while
dragging all your luggage through public transport, worrying about losing luggage or getting it on and off trains before they leave. If you have ever tried using public transport for
those occasions, you likely understand the stress this can cause. Travelling with older or younger family members only exacerbates the problems, particularly if you have time sensitive
connections to make.
The last you need to worry about when travelling to a tight schedule is how you are going to get there, with all of your family, all of your luggage or
if a minicab will be available. For this reason, at United Car we offer a guaranteed pre booking service to all customers in the Kensington area, where you can book your London
airport transfer as far in advance as you need to, giving you complete peace of mind that all of your family and all of your luggage will be collected with time to spare
and transported safely and comfortably to the airport, no stress, no worry: now is’nt that the right way to start your hard earned holiday.
Travelling Back To Kensington?
We Offer Free Flight Monitoring.With ALL Airport Collections.We monitor your flight for delays.
Find Out More
Kensington Airport Rates
- Kensington to Heathrow from..
- Kensington to Gatwick from..
- Kensington to Stansted from..
- Kensington to Luton from..
- Kensington to London City from..
- Kensington to Southend from..
- £30.00
- £55.00
- £56.00
- £63.00
- £37.00
- £75.00
Kensington Hotels Covered
Our Kensington taxi service is available at all hotels in the Kensington area, below you see can some of the hotels we regularly collect / drop off customers too.
 |
Ambassadors Hotel 16 Collingham Rd, Kensington, London SW5 0LX tel:020 7373 1075
|
 |
Premier Inn 22-32 W Cromwell Rd, Kensington, London SW5 9QJ tel: 0871 527 8668
|
 |
The Rembrandt Hotel 11 Thurloe Pl, Kensington, London SW7 2RS tel: 020 7589 8100
|