Web Development Company

We offer custom software and Web development services under our proven offshore model
Asp.Net 4 – A potentially dangerous Request.Form value was detected from the client

Posted on Monday, May 9th, 2011 | Asp.Net, asp.net programming, asp.net web development | admin

Request Validation has detected a potentially dangerous client input value, and processing of the request has been aborted. This value may indicate an attempt to compromise the security of your asp.net application, such as a cross-site scripting attack. You can disable ( Asp.net 2.0 ) request validation by setting validateRequest=false in the Page directive or in the configuration section. However, it is strongly recommended that your application explicitly check all inputs in this case. In ASP.Net 4 Please use below configuration

In the web.config file, within the <system.web> tags, insert the httpRuntime element with the attribute requestValidationMode=”2.0″.

Example:

<configuration>
<system.web>
<httpRuntime requestValidationMode=”2.0″ />
</system.web>
</configuration>

0

Read Comments

Web.config 301 Redirect – asp.net

Posted on Tuesday, May 3rd, 2011 | Asp.Net, asp.net web development, web application development, web designing | admin

The Asp.Net 301 permanent redirect is the most search engine-friendly method of redirection to the new URL or page and is the current standard for SEO purposes.

Step 1

Download and enable the URL Rewrite module for IIS 7. Then the following code is used in the ASP.NET web.config file:

Step 2

<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Redirect to WWW" stopProcessing="true">
          <match url=".*" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^my-domain-name.com$" />
          </conditions>
          <action type="Redirect" url="http://www.my-domain-name.com/{R:0}"
               redirectType="Permanent" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>
0

Read Comments

Javascript allert inside AJAX UpdatePanel , Not working

Posted on Friday, February 18th, 2011 | .net development, asp development | admin

The UpdatePanel control in Microsoft’s ASP.NET AJAX, is a good way to save some time when you have simple AJAX programming needs to post data to a form without refreshing the Web page.  The javascript  code is not working if you using the code inside update panel.  So in order to add javascript in update panel you need to register you client script to your script manager as shown below:

ScriptManager.RegisterClientScriptBlock(Page, Page.GetType(),Guid.NewGuid().ToString(),“alert(‘Hi, I am here !’);”,true);

Open a prettyPhoto

ScriptManager.RegisterClientScriptBlock(Page, Page.GetType(),Guid.NewGuid().ToString(),“$(\”a[rel^='prettyPhoto']\”).prettyPhoto({ theme: ‘facebook’ });”,true);

0

Read Comments

Future of Joomla 1.6

Posted on Saturday, February 12th, 2011 | ecommerce website, joomla custom components development, joomla custom modification, joomla developers, Joomla Development | admin

This new version of Joomla includes more power, more control, and more options than ever before. Rebuilt from the ground up in much of the application, this latest Joomla release is delight the casual site builder while helping small, medium, and enterprise businesses succeed in delivering web sites

improvements in Joomla 1.6

Joomla 1.6 delivers new features to end-users and site administrators :

  • Finer access controls for viewing and editing content with configurable user groups and viewing levels
  • A user-defined category structure, from simple one-level to complex multi-level categories
  • Installation improvements allowing for multiple extension installations in one package, update with a single click
  • Expanded language support for easy production of multi-lingual sites
  • Start and end publishing times for modules with more control over where they display.
  • Fresh new templates and semantic markup to please the eye as well as the search engines
  • More creative control through template styles
  • Hundreds of additional features, streamlining workflow and productivity
0

Read Comments

How to Redirect joomla index.php to root

Posted on Sunday, January 9th, 2011 | Uncategorized | admin

Google Webmaster tool  show the same duplicate content for http://www.nooglesoft.com/index.php and http://www.nooglesoft.com/.

A common request is to be able to remove or redirect the index.php from appearing in the url. This is possible  with server-side technology like .htaccess configuration files .

Require the www and Redirect index.php to root

Options +FollowSymLinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php</code>

Options +FollowSymLinks
#RewriteEngine on
RewriteCond %{HTTP_HOST} ^nooglesoft\.com$
RewriteRule ^(.*)$ http://www.nooglesoft.com/$1 [R=301]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/
RewriteRule ^index\.html$ http://www.nooglesoft.com/ [R=301]

RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.nooglesoft.com/ [R=301,L]
1

Read Comments

ReCaptcha with Asp.Net MVC

Posted on Saturday, November 13th, 2010 | .net development, .Net Technology, .net web development, .net website development, Asp.Net, asp.net developers, aspdotnetstorefront solutions, b2c web development, dotnetnuke development, ecommerce solution | admin

These are just a few steps, as the latest reCAPTCHA library has all the pieces you need for asp.net MVC:

Step 1 – Create Your ReCAPTCHA Account
Go to the ReCAPTCHA site and sign up for your keys. You will get a private key and and a public key.

Step 2 – Download the .Net Library for ReCAPTCHA
Get reCAPTCHA Library and add this to your ASP.NET MVC project as a reference.
Step 3 – Create Action Filter and handle the Captcha validation Continue reading…

0

Read Comments

Website Development – ASP.NET

Posted on Friday, November 12th, 2010 | .Net Technology, .net website development, asp net web application development, Asp.Net, asp.net development, asp.net framework, asp.net programming, web development companies, web development company, web development solutions | admin

Microsoft recommends developing ASP.NET web applications in an isolated development environment. For more information on the various kinds of development environments, read the chapter ASP.NET Web Application Development Models from the article Team Development with Visual Studio .NET .

ASP.NET has introduced its five updated versions with new added features in each version.

  • It was first commenced to web world with version 1.0 in 2002 with Visual Studio .NET,
  • In 2003 version 1.1 with Windows Server 2003 and Visual Studio .NET 2003,
  • In 2005 version 2.0 with Visual Studio 2005, Visual Web Developer Express and SQL Server 2005,
  • In 2007 version 3.5 released with Windows Server 2008 and Visual Studio 2008,
  • In 2008 version 3.5 service pack released with Visual Studio 2008 Service Pack 1

ASP.NET allows developers for web application development to use fully featured languages like VB.NET and C# (C-Sharp). Feature of “web services” is unique by ASP.NET, class library, XML support and complete compatibility with other programming languages.

1

Read Comments

Andoid : Unparsed aapt error(s)! Check the console for output

Posted on Tuesday, September 28th, 2010 | Andoid, Application Development Company | admin

Unparsed aapt error(s)! Check the console for output.  Unknown Android Packaging Problem

The “Console” tab in eclipse does not contain any errors at all. Is there a specific android console that I can’t find?

How can I solve this issue?

Solution

Just : Project then clean

1

Read Comments

Website Development Outsourcing- A Booming Trend in India

Posted on Monday, September 13th, 2010 | Asp.Net, jQuery, Web Application Development, Web Development, Website Designing | admin

India is considered to be the leader in IT and computer software industry without any doubt. You will be able to find the best of computer and IT companies like Tata Consultancy Services, Wipro, Infosys, Mahindra Satyam and many other companies with vast experience, skills and adeptness in this relative field. Many European and foreign companies outsource their web related or computer related tasks to in the form of outsourcing to India. Those overseas companies get the best of service, products and other goods as per their requirement and expectation without any shortcomings. The biggest advantage is the saving of enormous money when they outsource their related website development work to India. India is considered to be the finest place to outsource website development work as it has numerous well qualified and vastly experienced computer software and IT professionals and well renowned companies. So if you want to develop a very useful and advantageous website then outsourcing the work to India can be the best possible solution currently. Continue reading…

0

Read Comments

How to build your own Websites and Why Joomla is the Best Option Available

Posted on Monday, September 13th, 2010 | Content Management System, joomla custom components development, joomla custom design templates, joomla custom modification, joomla custom modules development, joomla customization, joomla design integration, joomla developers, Joomla Development, joomla module installation, joomla template customization, open source applications, open source cms, open source content management system, open source content management systems, open source customization, open source developer, open source development, open source web development, open source website development, smart open source cms | admin

If you want to build your own website which could be very effective and practical then you may need useful content management system so that you can create your own website with utmost accuracy without any shortcomings. If you intend to make a very effective website on your own you can easily employ the advantageous Joomla content management system website framing arrangement which can be the ultimate answer to your web development. With the help from Joomla website solutions you can easily undertake various guidelines and other procedures in the most simple and error free way. All the prescribed guidelines and other procedures are listed in the most uncomplicated and effective way that you can commence your web development with greatest ease and expediency. Some of the best and the most beneficial web development tools and techniques are included in the overall framework like automatic templates, simple and error free edit and e-commerce facilities like extensive shopping cart, record manager, numerous add- on’s and plug-in aspects which can be used as an effective device for proficient workflow management. Continue reading…

0

Read Comments