The group of IT consultants committed on best quality deliverable.
User friendly interfaces with unique design
Work when you travel with performance oriented apps using your gadjets
Be the leading brand through search engines
A candle loses nothing by lighting another candle. -Father James Keller
I am new to MVC6(Asp.Net Core) and JQuery stack. I have started my new project in MVC6 and JQuery, with out hands on work experience in MVC. One of the major problems I faced during initial phase of the development was form validation using JQuery. Here I am trying to describe the work around to […]
The error mentioned in the title we normally come across while publishing a web application from Visual Studio using web deploy. This is a generic error message so that there are various reason behind it depends on the web deploy settings and configuration. I would like to point out two configurations I missed, when I […]
Introduction Web.config tokenization/parameterization is one of the major part of releasing web applications across different environments. But when it’s coming to website type project in Visual Studio, it’s a real head ache. I have came across such situation and spend lot of time to find a practical solution to solve this issue. Here I am […]
You cannot rename a website type project in Visual Studio 2013 by simply right click and rename…!! This issue is caused by IIS Express. You can solve it by changing the site name in applicationhost.cofig of your IIS Express. While changing the name, make sure that this name is unique. Steps to modify applicationhost.cofig Find the […]
Introduction This article aims at providing guide lines to automate Databases release to SQL Server using MS Release Management tool and Data-tier applications in Visual Studio. If you are not familiar with Release Management, you can make use of my article to configure the RM environment. Background Database integration is a main headache in continuous integration of Software […]
I have just started using TFS build and my build was keep on failing and showing errors like Type ‘RadTextBox’ is not defined, Type ‘Telerik.Web.UI.GridCommandEventArgs’ is not defined, : Name ‘RadGrid’ is not declared. My local build was working with out any issues. I spend hours for a solution and finally I get it. This may help someone […]
Overview The scenario is to deploy your web application to a machine, where there is no domain trust between your RM (Release Management) environment and that target machine. This post explains the steps to configure RM to work across untrusted domains using ghost/shadow accounts. Ghost accounts are local user accounts with same user name and […]
For each loop container implementation is simile to for each loop structure in programming languages. SSIS provides 7 types of enumerators with for each loop container. Foreach File enumerator to enumerate files in a folder. The enumerator can traverse subfolders. Foreach Item enumerator to enumerate items that are collections. For example, you can enumerate the […]
Overview Conditional split is used to route data rows to different outputs based on conditions. This is similar to CASE statement in programming languages.Here I am explaining conditional split with an example. Requirement is to route country specific data from a SQL Server tables to different flat files. Step 1:Drag and drop a data flow […]
Hacked By Shade Hacked By Shade GreetZ: Prosox – Sxtz – KDZ – RxR HaCkEr – GeNErAL – HolaKo – Golden-Hacker – ~Abo-Al EoS Twitter: @ShadeHaxor
We can automate release process of different types of applications like web applications, databases, reporting projects etc using release management. Here I am trying to give an overview of basic configurations and deployment set up of a web application. Overview With release management in Visual Studio we can configure, approve and deploy our applications for […]
Version Control- A Comparison Centralized version control • One master copy of the project• Master has latest version• Only works online Distributed Version Control • Local copy of the repository and full history• Log less communication with server• Work offline with local repository Comparison
Hi, We can maintain scroll position after a postback by simply including an attribute in the page directive! <%@ Page Language=”C#” MaintainScrollPositionOnPostback=”true” %> Happy Programing…
Hai, Using following steps, you can perform JQuery validation in aspx pages. Step1: Create a script reference to these files in the head section of your page. src=”JS/jquery-1.3.2.js” type=”text/javascript” src=”JS/JQuery.Validate.js” type=”text/javascript” Step2: Add a textbox and a button inside form tag Step3: Now add following script inside script tag to enable JQuery Validation $(document).ready(function() {$(“#form1”).validate({rules: […]
Hi, We will get selected text of a dropdownlist using JQuery. syntax: $(“#myselect :selected”).text(); For an ASP.NET dropdown you can use the following: $(“[id*=’MyDropDownId’] :selected”).text() Happy Programing…
Hai, We can write an extension for Jquery to get querystring(parameter) values of a url.Extension of JQuery as follows. $.extend({ getUrlVars: function(){ var vars = [], hash; var hashes = window.location.href.slice(window.location.href.indexOf(‘?’) + 1).split(‘&’); for(var i = 0; i < hashes.length; i++) { hash = hashes[i].split(‘=’); vars.push(hash[0]); vars[hash[0]] = hash[1]; } return vars; }, getUrlVar: function(name){ […]
Hi, It has been possible to enable and disable triggers for some time using the ALTER TRIGGER and ALTER TABLE commands. Syntax:- ALTER TRIGGER DISABLE;ALTER TRIGGER ENABLE;ALTER TABLE DISABLE ALL TRIGGERS;ALTER TABLE ENABLE ALL TRIGGERS; Happy Programing…
Hi, We can specify order of execution of triggers in oracle using FOLLOWS clause. Example: CREATE OR REPLACE TRIGGER trigger_follows_test_trg_1BEFORE INSERT ON trigger_follows_testFOR EACH ROWFOLLOWS trigger_follows_test_trg_2BEGINDBMS_OUTPUT.put_line(‘TRIGGER_FOLLOWS_TEST_TRG_1 – Executed’);END; Now the TRIGGER_FOLLOWS_TEST_TRG_1 trigger always follows the TRIGGER_FOLLOWS_TEST_TRG_2 trigger. Result: SQL> SET SERVEROUTPUT ONSQL> INSERT INTO trigger_follows_test VALUES (2, ‘TWO’);TRIGGER_FOLLOWS_TEST_TRG_2 – ExecutedTRIGGER_FOLLOWS_TEST_TRG_1 – Executed 1 row created. […]
Hi, Execute immediate is used to execute dynamic SQL statement or anonymous PL/SQL block. Syntax: EXECUTE IMMEDIATE dynamic_sql_string[INTO {define_variable,… | INTO record_name}][USING[IN|OUT|IN OUT] bind_argument,…][RETURN[ING] INTObind_argument,…];dynamic_sql_string : The SQL statement string or PL/SQL block define_variable : One variable receives each column value returned by the query. record_name : A record based on a user-defined TYPE or […]
There is an issue when we test Asp.Net web applications in IE9. When we are running the application, it will show like this. When IE9 tries to go to localhost it uses IPv6, and the ASP.NET Development Server is IPv4 only and so nothing loads and we get the error. Solution:- Login in administrator mode […]
Hi, When we are opening an Oracle connection with Oracle 11g using Oracle.DataAccess.Client. “ORA-1017: invalid username/password; logon denied” error may occur. This is due to oracle case sensitivity rule in Oracle 11g. Solution:- Run following command ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE Happy Programing..
Hai, We can bind an event using .bind() methode of JQuery. For example:$(“#buttonId”).bind(‘onclick’, functionName); or$(‘#buttonId).bind(‘click’, function() {alert(‘User clicked’);}); Unbinding is done by using .unbind() Example: $(“#buttonId”).unbind(‘onclick’); Happy Programing…
Hai, Selected text of a dropdownlist using jQuery $(‘select[id$=dropdownlistId] :selected’).text() Happy Programing…
Hai, We will get selected value of a radiobuttonlist using following JQuery code $(‘#radiobuttonId input[type=radio]:checked’).val(); Happy Programing…
Hai, Using JQuery we can scroll browser window to top position. $(‘html, body’).animate({ scrollTop: 0 }, ‘fast’); Happy Programing…
When we use list searchextender and onchange event js function in a dropdownlist the js function will fire twice. Solution: Add follwing code to the page load UserDropDown.Attributes.Add(“onpropertychange”, @”if ( event.propertyName == ‘selectedIndex’ ) jsfunction();”);
We can format date using JQuery. syntax: $.format.date(“2010-01-12 10:54:50.546”, “dd/MM/yyyy”);
Different date difference function in Oracle: Date difference in months select round((MONTHS_BETWEEN(TO_DATE(sysdate), TO_DATE(‘2010-01-01’, ‘YYYY-MM-DD’)))) as mon from dual; Result: 9 Date difference in days select to_date(‘7-MAR-2010′) – to_date(’07-FEB-2010’)from dual result: 28
You can select a radiobuttion list by value using jquery $(‘#radiobuttonlistId’).find(“input[value=’0′]”).attr(“checked”, “checked”); Regards.
Hai, Normaly JQuery won’t work after a partial postback from an update pannel. Write Sys.Application.add_load(function_name); in content template of update pannel to solve this issue. Happy Programing….
function readListControl(){var tableBody = document.getElementById(‘<%=Checkboxlist_id%>’).childNodes[0]; for (var i=0;i < tableBody.childNodes.length; i++){var currentTd = tableBody.childNodes[i].childNodes[0];var listControl = currentTd.childNodes[0]; if (listControl.checked == true){return true;}}alert(“Please select any item!”);return false; }
Language Integrated Query, or LINQ, is a Microsoft technology introduced in the .NET 3.5 framework. LINQ lets you “…write queries against strongly typed collections of objects.” That is, it lets you treat a variety of data – not just databases – as first class data sources. LINQ comes in several flavors to allow you to […]