About Raseen Mission Statement Value Our Board Our Group
Link Data Center1 Link Data Center 2 Link Data Center 3 Link Data Center4
Domain Registration Linux Hosting Windows Hosting Corporate Hosting Multi Domain Hosting Un_Limited Web Hosting Negotiable Hosting Business Email Solution
Domain Reseller Program Hosting Reseller Program
Link Clients 1 Link Clients 2 Link Clients 3 Link Clients 4
   
Home Policy  
  About Us Data Center Services Reseller Clients Contact Us
 
  • About Us
  • Services
  • Exclusive Offer
  • Policy
  • Contact Us
 
  Knowledge Base - Hosting FnQ
 
Windows Server - 02

1
Data Base
 
Trouble connecting to SQL server
 
How To Administer Your Database
 
OLE DB Connection Strings

2
E - Mails
 
How to send email using ASP.NET2 VB
 
Pop E-mail Account Settings
 
CDOSYS (formerly CDONTS)

3
FTP
 
Problems with FTP Connection
 
Upload Files

1) DataBase:

1
Trouble connecting to SQL server
 

Solution

With MS SQL databases, while the server IP is always the same, the connection port is different if you are trying to connect remotely (with SQL Management Studio or similar software) or locally (from a script).

When connecting remotely to MS SQL databases, you should use port 1501. In Management Studio, for example, under 'server name', you should enter: 67.19.166.82,1501 

When connecting locally, from a script, you should use port 1433 instead


2
How To Administer Your Database
 

Solution

Administration of SQL databases can be done in any number of ways; the easiest of these, however, is to use dedicated administration software.


To administer MySQL databases we recommend using MySQL Administrator and MySQL Query Browser. For more information on these, please see:
http://www.mysql.com/products/tools/administrator/
http://www.mysql.com/products/tools/query-browser/


For MS-SQL, we recommend using Microsoft SQL Server Management Studio Express. See:
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796

Note that when connecting remotely to a MS SQL database, you should use port 1501.


3
OLE DB Connection Strings
 

Solution

OLE DB Connection Strings:

While ODBC drivers are currently available, we nonetheless recommend the use of OLE DB instead. Example connection strings for various database systems are available below:


MS Access:
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\somepath\mydb.mdb;User Id=admin;Password=;"

SQL Server:
"Provider=sqloledb;Data Source= 67.19.166.82,1433;Network Library=DBMSSOCN;Initial Catalog=pubs;User ID=sa;Password=asdasd;"

Excel:
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\MyExcel.xls;Extended Properties=""Excel 8.0;HDR=Yes;IMEX=1"""

Text:
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\txtFilesFolder\;Extended Properties=""text;HDR=Yes;FMT=Delimited"""

DBF / FOXPRO:
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\folder;Extended Properties=dBASE IV;User ID=Admin;Password="

Visual FoxPro:

Database container (.DBC):
"Provider=vfpoledb.1;Data Source=C:\MyDbFolder\MyDbContainer.dbc;Collating Sequence=machine"

Free table directory:
"Provider=vfpoledb.1;Data Source=C:\MyDataDirectory\;Collating Sequence=general"

MySQL:

MyODBC 2.50 Remote database:
"Driver={mySQL};Server=67.19.166.82;Port=3306;Option=131072;Stmt=;Database=my-database;Uid=username;Pwd=password;"

MyODBC 3.51 Remote database:
"DRIVER={MySQL ODBC 3.51 Driver};SERVER=67.19.166.82;PORT=3306;DATABASE=myDatabase; USER=myUsername;PASSWORD=myPassword;OPTION=3;"


Please remember, though, that these are just generic examples; you should make sure you use your own credentials and database information instead of the examples here.

 

2) Email:

1
How to send email using ASP.NET2 VB
 

Solution

'This is an example only, and needs to be modified with proper information


'Sub SendEmail()

'create the mail message
Dim nmail As New System.Net.Mail.MailMessage

'set the addresses
nmail.To.Clear()
nmail.To.Add(New System.Net.Mail.MailAddress("recipient name "))
nmail.From = New System.Net.Mail.MailAddress("my name ")

'set the content
nmail.Subject = "This is an email"
nmail.Body = "this is the body content of the email."

'prepare to send the message
Dim smtp As System.Net.Mail.SmtpClient = New System.Net.Mail.SmtpClient("mail.mydomain.tld")

'you need to use the credentials of an existing mail account
smtp.Credentials = New System.Net.NetworkCredential("me@mydomain.tld", "mypassword")

Try
smtp.Send(nmail)
Catch ex As Exception
Response.Write("Error: " & ex.ToString())
End Try

End Sub


2
Pop Email Account
 

Solution

Incoming (POP3)
mail.your-domain.com
Outgoing (SMTP)
mail.your-domain.com
Outgoing SMTP
Authentication needs to be ENABLED
Outgoing port
587
Username
Your full email address



3
CDOSYS (formerly CDONTS)
 

Solution

The CDOSYS mailing component is supported and recommended. Below is an example of how to use the mailing component in ASP:


Dim Subject, Body, SenderEmail, RecipientEmail, SMTPServer, SMTPusername, SMTPpassword

SenderEmail = "me@mydomain.tld"
RecipientEmail= "someone@somedomain.tld"
SMTPserver = "mail.mydomain.tld"
SMTPusername = "me@mydomain.tld"
SMTPpassword = "mypassword"

Subject = "Hello"
Body = "This is a test. Please ignore."


sch = "http://schemas.microsoft.com/cdo/configuration/"
Set cdoConfig = CreateObject("CDO.Configuration")
With cdoConfig.Fields
.Item(sch & "sendusing") = 2
.Item(sch & "smtpserver") = SMTPserver
.Item(sch & "smtpserverport") = 587
.Item(sch & "smtpauthenticate") = 1
.Item(sch & "sendusername") = SMTPusername
.Item(sch & "sendpassword") = SMTPpassword
.Item(sch & "smtpusessl") = False
.Item(sch & "connectiontimeout") = 100
.update
End With
Const cdoSendUsingPickup = "c:\inetpub\mailroot\pickup"
Set cdoMessage = CreateObject("CDO.Message")
With cdoMessage
Set .Configuration = cdoConfig
cdoMessage.From = SenderEmail
cdoMessage.To = RecipientEmail
cdoMessage.Subject = Subject
cdoMessage.TextBody = Body
cdoMessage.Send
End With
Set cdoMessage = Nothing
Set cdoConfig = Nothing



3) FTP

1
Problems with FTP Connection
 

Solution

Please note that our Windows FTP servers require Passive Mode to be enabled in your FTP client. If you are having problems connecting or listing directory contents, then it is likely that Passive Mode is not enabled in your FTP client. The exact way to enable this will be specific to your chosen software, so you should check the documentation which comes with your software for further details.

If you are using FileZilla 2.x, you can find this option in the Site Manager, by selecting a site and clicking on the Advanced button. In FileZilla 3.x, you can globally select the transfer mode by using the Settings -> Connection menu


2
Upload Files
 

Solution

We support FTP (along with FTP compatible software) and Frontpage to upload files

you can also used File Manager for uploading files through control panel

FTP :-

ftp.yourdomianname.com

user name:- user name

pass:

   
 (c) - 2009 Hosting Partner, All rights reserved
Exclusive Offer | Knowledge Base (FAQ) | Support Form | Contact Us
 Designed & Hosted by YounazSoft & HostingPartner
          A Project of Y I - Group