Home | Order Now | Support
Website Design India Website Hosting India
CALL US: +91 9391 323639
Email: info@websitedesignindia.in
Web hosting hyderabad
 
Linux Server Hosting India Windows Server Hosting India Domain Names Website Designing Hyderabad Hosting FAQ's Contact Us Hosting Help
Windows Hosting Support
Linux Support Windows Support Tomcat Server
For Support send email to support@websitedesignindia.in
1. MS SQL - SAMPLE CONNECTION STRING (ASP.NET)
2. MS SQL - SAMPLE CONNECTION STRING (ASP)
3. Adding .NET Framework v3.5 support
4. Moving an ASP.NET Application from IIS 6.0 to IIS 7.0
5. Error when connecting with MS SQL Managment Studio to MS SQL Server 2008
6. Manual installation of WordPress in DotNetPanel
7. Connect to MSSQL via PHP
 
1. MS SQL - SAMPLE CONNECTION STRING (ASP.NET)
This is a sample connection string which you can use with MS SQL 2005 / 2008 under ASP.NET:

<connectionStrings>
<add name="connStr" providerName="System.Data.SqlClient" connectionString="Data Source=localhost;Initial Catalog=XXXX;User ID=XXXXX;Password=XXXXX;" />
</connectionStrings>

For security reasons, we have changed specific settings with XXXX

NOTE: You MUST include the full database name, which consit of the user prefix and the name that you have given, for example XXX_DB

TOP
2. MS SQL - SAMPLE CONNECTION STRING (ASP)

This is a sample connection string which you can use with MS SQL 2005 / 2008 under ASP:

<%
dim conn
dim rs
strConn = "Driver={SQL Server};Server=localhost;Database=XXXX;uid=XXXX;pwd=XXXX"
Set cnt = Server.CreateObject("ADODB.Connection")
cnt.ConnectionString= strConn
cnt.Open
%>

For security reasons, we have changed specific settings with XXXX

NOTE: You MUST include the full database name, which consit of the user prefix and the name that you have given, for example XXX_DB

TOP
3. Adding .NET Framework v3.5 support

To add .NET Framework v3.5 support you need to insert the following entries in your web.config file. Please make sure that you insert them in the proper root elements as they may already exist in the file.

<configuration>

<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>

<system.web>
<compilation debug="true">
<assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
</assemblies>
</compilation>

<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</controls>
</pages>
</system.web>

<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="WarnAsError" value="false" />
</compiler>

<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="OptionInfer" value="true" />
<providerOption name="WarnAsError" value="false" />
</compiler>
</compilers>
</system.codedom>

<system.webServer>

<modules>
<remove name="ScriptModule" />
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</modules>

</system.webServer>

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

TOP
4. Moving an ASP.NET Application from IIS 6.0 to IIS 7.0

When you upload IIS 6 applications to IIS 7 you need to change of the settings in the web.config . For are detail information please review: http://msdn.microsoft.com/en-us/library/bb515251.aspx

TOP
5. Error when connecting with MS SQL Managment Studio to MS SQL Server 2008

Error when connecting with MS SQL Managment Studio to MS SQL Server 2008

If you receive Microsoft SQL Server, Error: 916, when you connect with Microsoft SQL Studio:

The server principal "XXXXX" is not able to access the database "XXX" under the current security context. (Microsoft SQL Server, Error: 916)

You need to unselect the Collation for the databases.
1. Navigate to 'Databases' in Object Explorer and open Object Explorer Details in that context
2. Right click on the column header and unselect 'Collation'
3. Refresh the server in Object Explorer and enumerate the databases

TOP
6. Manual installation of WordPress in DotNetPanel

Step 1: Download the latest WordPress installation file from the http://wordpress.org/download/ , download it by clicking on "Download" button.

Step 2: You could upload it via FTP or the DNP control panel File Manager and unzip the file. For your information, if you upload the file to wwwroot folder, after the installation is completed, the file script will appear once you visit your website is http://yourdomainname.com

Another option is to create a subfolder in your hosting account and upload the file in it. The WordPress installation will be accessible at http://yourdomainname.com/subfolder

Step 3: Create a MySQL database for WordPress in Do Net Panel.

Step 4: Open the URL http://domainname.com in Internet browser. Then click on the "Create a Configuration File" button. Fill in the database detail and site detail then finish the installation.

TOP
7. Connect to MSSQL via PHP

<?php
//Code for connection on Arvixe
$myServer = "localhost\SQLEXPRESS";
$myUser = "Database User Name"; // replace with your values
$myPass = "Database Password"; // replace with your values
$myDB = "Database Name"; // replace with your values

//create an instance of the ADO connection object
$conn = new COM ("ADODB.Connection")
or die("Cannot start ADO");

//define connection string, specify database driver
$connStr = "PROVIDER=SQLOLEDB;SERVER=".$myServer.";UID=".$myUser.";PWD=".$myPass.";DATABASE=".$myDB;
$conn->open($connStr); //Open the connection to the database
?>

 

TOP
 
 
 
 
 Other Packages on Linux Server

 

 Control Panel Demo
Control Panel Demo Linux Server
 
 
 Server Configuration
We stay on top of the latest technologies, and try to utilize the latest server hardware specs available on the current market.

We are currently utilizing the latest Dell PowerEdge servers with at least a minimum of:

1) Dual Quad Core Xeon CPUs
2) 8GB of RAM
3) Redundant (RAID) SAS (SCSI) 15K RPM drives

Our Server are monitored 24/7, using the latest technologies available, and apply strict security policies to make sure that your information is always available to you and your clients while maintaining safety and confidentiality.


Our data centers (SAS 70 Type II Certified, located in Dallas and Houston, Texas) are equipped with multiple backbone Internet lines, backup power diesel generators, backup tape libraries, 24/7 surveillance ensuring speed, safety, and redundancy.

 
2008 @ Website Design India. All rights reserved. Sitemap | Privacy Policy | Terms & Conditions | Resources | FAQ | Contact Us
Hyderabad Web Hostig, Web Hosting Company in Hyderabad, Cheap Web Hsoting in Hyderabad, Web hosting India, Web Hosting Chennai, New Delhi, Mumbai, Vijaywada, Jaipur, Andhra Pradesh