Skip to main content

Posts

Showing posts from December, 2014

How to deploy SSIS package to sql server

When we are ready to deploy our packages we have the following options available: Deploy to the file system Deploy to the package store Deploy to SQL Server The simplest approach to deployment is probably to deploy to the file system.  As SSIS package is actually just an XML file and it can simply be copied from its project location to a folder on the deployment target. SSIS packages deployed to SQL Server are stored in the msdb database. Follow below steps to deploy SSIS package in SQL Server

Call javascript function from codebehind in asp.net

Hello friends  Today I am going to explain how to call JavaScript function from code behind without assigning it to any control in asp.net. Calling a JavaScript function from code behind is quiet simple, yet it confuses a lot of developers. First declare a JavaScript function in your code as shown below: