http://www.jqueryrain.com/2012/04/best-ajax-jquery-pagination-plugin-tutorial-with-example-demo/
Friday, August 10, 2012
Friday, July 20, 2012
google map [editable polylines]
1. Google Maps JavaScript API Example: Editable Polylines
2. https://code.google.com/apis/console/?pli=1#project:943915124531:access
3.<script language="javascript" type="text/javascript">
function validateCheckBoxes() {
var isValid = false;
var gridView = document.getElementById('grdUse_ctl00');
for (var i = 1; i < grid.rows.length; i++) {
var inputs = gridView.rows[i].getElementsByTagName('input');
if (inputs != null) {
if (inputs[0].type == "checkbox") {
if (inputs[0].checked) {
isValid = true;
return confirm('You are about to delete the user. Are you sure you wish to continue?')
}
}
}
}
alert("Please select at least one checkbox");
return false;
}
</script>
2. https://code.google.com/apis/console/?pli=1#project:943915124531:access
3.<script language="javascript" type="text/javascript">
function validateCheckBoxes() {
var isValid = false;
var gridView = document.getElementById('grdUse_ctl00');
for (var i = 1; i < grid.rows.length; i++) {
var inputs = gridView.rows[i].getElementsByTagName('input');
if (inputs != null) {
if (inputs[0].type == "checkbox") {
if (inputs[0].checked) {
isValid = true;
return confirm('You are about to delete the user. Are you sure you wish to continue?')
}
}
}
}
alert("Please select at least one checkbox");
return false;
}
</script>
Wednesday, June 20, 2012
Jquery ready made controls for asp net open source.
Jquery ready made controls for asp net open source.
http://weblogs.asp.net/jgalloway/archive/2012/02/28/juice-ui-open-source-asp-net-web-forms-components-for-jquery-ui-widgets.aspx
These can be used in any of the ASP.net project to provide interactive UI to project screens.
http://weblogs.asp.net/jgalloway/archive/2012/02/28/juice-ui-open-source-asp-net-web-forms-components-for-jquery-ui-widgets.aspx
These can be used in any of the ASP.net project to provide interactive UI to project screens.
Monday, May 7, 2012
Get querystring value in javascript [using html5]
function Get_Userid() {
var qsarr = new Array();
var qs = location.search.substring(1);
var singleqs = new Array();
var str = "";
qsarr = qs.split('&');
for (i = 0; i < qsarr.length; i++) {
singleqs = qsarr[i].split('=');
// str += 'Query String Name : <span style="color:#ff0000;">' + singleqs[0] +
// '</span> and its value is : <span style="color:#ff0000;">' + singleqs[1] + '</span><br />';
}
document.getElementById('hidden_Username').value = singleqs[1];
alert(document.getElementById('hidden_Username').value);
}
var qsarr = new Array();
var qs = location.search.substring(1);
var singleqs = new Array();
var str = "";
qsarr = qs.split('&');
for (i = 0; i < qsarr.length; i++) {
singleqs = qsarr[i].split('=');
// str += 'Query String Name : <span style="color:#ff0000;">' + singleqs[0] +
// '</span> and its value is : <span style="color:#ff0000;">' + singleqs[1] + '</span><br />';
}
document.getElementById('hidden_Username').value = singleqs[1];
alert(document.getElementById('hidden_Username').value);
}
Monday, March 5, 2012
Compare 2 arrayes and make 3 arrays with comma separted val
if (base.Request.Form["apptToList1"] != null)
{
string[] Get_delval = base.Request.Form["apptToList1"].Split(',');
for (Int32 i = 0; i <= numArray.Length - 1; i++)
{
for (Int32 j = 0; j <= Get_delval.Length - 1; j++)
{
if (numArray[i].ToString() == Get_delval[j].ToString())
{
break;
}
else
{
if (j == Get_delval.Length - 1)
{
list1.Add(numArray[i].ToString());
}
}
}
}
Thursday, March 1, 2012
Monday, February 27, 2012
convert more then value to comma separte value in sql server
DECLARE @choices varchar(5000)
set @choices = ''
select @choices = @choices + (cp.DefaultCaption + ', ' ) from test qc left outer join test1c on qc.ChoiceID = c.ChoiceID left outer join test2 cp on cp.CaptionID = c.CaptionID
where qc.QuestionnaireID in(@questionnaireId )
if(len(@choices)>0)
BEGIN
set @choices = substring(@choices, 0 ,len(@choices))
END
print @choices
set @choices = ''
select @choices = @choices + (cp.DefaultCaption + ', ' ) from test qc left outer join test1c on qc.ChoiceID = c.ChoiceID left outer join test2 cp on cp.CaptionID = c.CaptionID
where qc.QuestionnaireID in(@questionnaireId )
if(len(@choices)>0)
BEGIN
set @choices = substring(@choices, 0 ,len(@choices))
END
print @choices
Wednesday, February 22, 2012
Start with the sequence of non-zero digits 123456789. The problem is to place plus or minus signs between them so that the result of thus described arithmetic operation will be 100.
Start with the sequence of non-zero digits 123456789. The problem is to place plus or minus signs between them so that the result of thus described arithmetic operation will be 100.
1 + 2 + 34 - 5 + 67 - 8 + 9 = 100
12 + 3 - 4 + 5 + 67 + 8 + 9 = 100
123 - 4 - 5 - 6 - 7 + 8 - 9 = 100
123 + 4 - 5 + 67 - 89 = 100
123 + 45 - 67 + 8 - 9 = 100
123 - 45 - 67 + 89 = 100
12 - 3 - 4 + 5 - 6 + 7 + 89 = 100
12 + 3 + 4 + 5 - 6 - 7 + 89 = 100
1 + 23 - 4 + 5 + 6 + 78 - 9 = 100
1 + 23 - 4 + 56 + 7 + 8 + 9 = 100
1 + 2 + 3 - 4 + 5 + 6 + 78 + 9 = 100
1 + 2 + 34 - 5 + 67 - 8 + 9 = 100
12 + 3 - 4 + 5 + 67 + 8 + 9 = 100
123 - 4 - 5 - 6 - 7 + 8 - 9 = 100
123 + 4 - 5 + 67 - 89 = 100
123 + 45 - 67 + 8 - 9 = 100
123 - 45 - 67 + 89 = 100
12 - 3 - 4 + 5 - 6 + 7 + 89 = 100
12 + 3 + 4 + 5 - 6 - 7 + 89 = 100
1 + 23 - 4 + 5 + 6 + 78 - 9 = 100
1 + 23 - 4 + 56 + 7 + 8 + 9 = 100
1 + 2 + 3 - 4 + 5 + 6 + 78 + 9 = 100
Validate check boxex in gridview with confirmation
<script language="javascript" type="text/javascript">
function validateChkBox() {
var isValid = false;
var gridView = document.getElementById('ctl00_ContentPlaceHolder111_grd_ctl00');
for (var i = 1; i < gridView.rows.length; i++) {
var inputs = gridView.rows[i].getElementsByTagName('input');
if (inputs != null) {
if (inputs[0].type == "checkbox") {
if (inputs[0].checked) {
isValid = true;
return confirm('You are about to delete the user. Are you sure you wish to continue?')
}
}
}
}
alert("Please select at least one checkbox");
return false;
}
</script>
function validateChkBox() {
var isValid = false;
var gridView = document.getElementById('ctl00_ContentPlaceHolder111_grd_ctl00');
for (var i = 1; i < gridView.rows.length; i++) {
var inputs = gridView.rows[i].getElementsByTagName('input');
if (inputs != null) {
if (inputs[0].type == "checkbox") {
if (inputs[0].checked) {
isValid = true;
return confirm('You are about to delete the user. Are you sure you wish to continue?')
}
}
}
}
alert("Please select at least one checkbox");
return false;
}
</script>
Monday, February 20, 2012
Wednesday, February 15, 2012
Generate Xml from code behind using soap function
using System.Xml;
using System.Xml.Serialization;
using System.Runtime.Serialization.Formatters.Soap;
-----------------------------------------------
MemoryStream stream1 = new MemoryStream();
new SoapFormatter().Serialize(stream1, "hi");
stream1.Position = 0;
StreamReader reader1 = new StreamReader(stream1);
string a= reader1.ReadToEnd().ToString();
using System.Xml.Serialization;
using System.Runtime.Serialization.Formatters.Soap;
-----------------------------------------------
MemoryStream stream1 = new MemoryStream();
new SoapFormatter().Serialize(stream1, "hi");
stream1.Position = 0;
StreamReader reader1 = new StreamReader(stream1);
string a= reader1.ReadToEnd().ToString();
Monday, January 30, 2012
make exe for window application with sql server and .net frame work installer
http://balanagaraj.wordpress.com/2007/05/29/create-exe-or-setup-file-in-net-windows-application/
Sunday, January 22, 2012
My Resume
Curriculum Vitae
ADDRESS:
Name: -- Rakesh Walia
Father’s Name: -- Sh Ravinder Kumar Walia
Permanent Address: - V.P.O Bharanta, Tehsil- Palampur Distt –Kangra
Himachal_Pradesh –176107
Phone: --9888071275
Email: rakeshwalia85@yahoo.co.in
Objective
To work in a progressive organization where my skills and abilities are best utilized along with the goals of the organization.
Experience Summary
Software Developer engaged in developing web and windows applications, with 4
years experience.
Having exposure to S/W Technologies such as ASP .NET 2.0, C# 3.5, VB.NET, VB 6.0, Visual Studio 2005/2008, Web Services, ASP .NET AJAX, JQuery, JavaScript, HTML, XML, SQL SERVER 2000/2005, Silverlight, Mobile application.
Used third party API’S. Also worked with reporting tools such as Crystal reports, Sql Server Reporting Services.
Working on Chatting application, Contact Import List using api, Sharing links with networking sites, SEO (URL Re-writing etc.)
Worked on Kentico CMS to build social community and e-commerce websites.
Experience
RyzeInfotech: [Cyber Dyne private limited]: March 2008 to January 2009
Gillcom Enterprises [ 9g web solution ]: January 2009 to 7 April 2010
Graycelltech technology : 7 April to till date
Educational Profile
PGDCA from Sikkim Manipal University
Complete ‘A’ level from DOEACC
Pursing ‘B’ level from DOEACC
Skills:
Operating Systems Windows 2000/XP/2003,window 7 Programming Languages and Scripting .NET 2.0,3.5,4.0 (C# / VB.NET / Web Service/ Windows Services, ASP.NET, XML, XSLT, AJAX 2.0/AJAX Pro), JavaScript, HTML, CSS Database SQL Server 2000/2005/2008, Applications MS-Office, MS Project Reporting Tools Crystal Reports, Sql server reporting service
A) Project: HYPERLINK "http://www.Moveforfree.com" www.Moveforfree.com
Team Size: 4
Description
It is a big project based on real estate and movers and packers services. This project contain 4 other related project HYPERLINK "http://www.Adminski.moveforfree.com,www.locator.moveforfree.com,www.management.moveforfree.com,www.moveforfree.com/mobile" www.Adminski.moveforfree.com,www.locator.moveforfree.com,www.management.moveforfree.com,www.moveforfree.com/mobile
Technologies used -
ASP.NET, C#, Web Service , Ajax, Jquery
SQL Server 2000, Third party email services ,third party php services etc
Key Tasks -
Coding of the various modules of the application
Developing stored procedures, triggers, functions and 3 tier architecture in dll.
_____________________________________________________________________________________
B) Project: http://www.dothejobcase.com/
Team Size: 2
Description
It is a US based project which contains student and professor time management and study management task.
Technologies used -
ASP.NET, C#, Web Service , Ajax, J Query
SQL Server 2005, Crystal reports, PDF generation using third party control
Key Tasks -
Coding of the various modules of the application
Developing stored procedures, triggers, functions and 3 tier architecture in dll
_______________________________________________________________
C) Project: Examination System [Internal Exam System ]
Duration: 7 December to january2010
Team Size: 1
Technologies used -
Vs 2008, c# Crystal reports, Nevron Third party control,
SQL Server 2005,
Description
This project contains the student examination according to the subject..
8 Reports using crystal reports and nevron chart
Key Tasks -
Coding of the various modules of the application
Developing reports
Developing stored procedures, functions with dll.
_____________________________________________________________________________________
D) Project: www.go4freelancers.com
Duration: 15 September to till now 2009
Team Size: 2
Description
Basically working like HYPERLINK "www.getafreelancer.com" www.getafreelancer.com . Which contain post project information, freelancer information, buyer information and other information. Implement Chatting application for buyer and freelancers
Technologies used -
ASP.NET, C#, Web Service , Ajax, Jquery
SQL Server 2005, Crystal reports
Key Tasks -
Coding of the various modules of the application
Developing reports
Developing stored procedures, triggers, functions and 3 tier architecture in dll.
Implement Chatting Application using Linq datasource with ajax
______________________________________________________________________________
E) Project: Online Tourism and Job Placement
Duration: September 2007 till January 2008
Team Size: 2
Description
Provides online information abouts hotels, rooms, categories. Like Naukri.Com
Technologies used -
ASP.NET, C#,Javascript, Ajax,Jquery
SQL Server 2005
Key Tasks -
Coding of the various modules of the application
Developing reports
Developing stored procedures, triggers, functions
Administration part of this project
ADDRESS:
Name: -- Rakesh Walia
Father’s Name: -- Sh Ravinder Kumar Walia
Permanent Address: - V.P.O Bharanta, Tehsil- Palampur Distt –Kangra
Himachal_Pradesh –176107
Phone: --9888071275
Email: rakeshwalia85@yahoo.co.in
Objective
To work in a progressive organization where my skills and abilities are best utilized along with the goals of the organization.
Experience Summary
Software Developer engaged in developing web and windows applications, with 4
years experience.
Having exposure to S/W Technologies such as ASP .NET 2.0, C# 3.5, VB.NET, VB 6.0, Visual Studio 2005/2008, Web Services, ASP .NET AJAX, JQuery, JavaScript, HTML, XML, SQL SERVER 2000/2005, Silverlight, Mobile application.
Used third party API’S. Also worked with reporting tools such as Crystal reports, Sql Server Reporting Services.
Working on Chatting application, Contact Import List using api, Sharing links with networking sites, SEO (URL Re-writing etc.)
Worked on Kentico CMS to build social community and e-commerce websites.
Experience
RyzeInfotech: [Cyber Dyne private limited]: March 2008 to January 2009
Gillcom Enterprises [ 9g web solution ]: January 2009 to 7 April 2010
Graycelltech technology : 7 April to till date
Educational Profile
PGDCA from Sikkim Manipal University
Complete ‘A’ level from DOEACC
Pursing ‘B’ level from DOEACC
Skills:
Operating Systems Windows 2000/XP/2003,window 7 Programming Languages and Scripting .NET 2.0,3.5,4.0 (C# / VB.NET / Web Service/ Windows Services, ASP.NET, XML, XSLT, AJAX 2.0/AJAX Pro), JavaScript, HTML, CSS Database SQL Server 2000/2005/2008, Applications MS-Office, MS Project Reporting Tools Crystal Reports, Sql server reporting service
A) Project: HYPERLINK "http://www.Moveforfree.com" www.Moveforfree.com
Team Size: 4
Description
It is a big project based on real estate and movers and packers services. This project contain 4 other related project HYPERLINK "http://www.Adminski.moveforfree.com,www.locator.moveforfree.com,www.management.moveforfree.com,www.moveforfree.com/mobile" www.Adminski.moveforfree.com,www.locator.moveforfree.com,www.management.moveforfree.com,www.moveforfree.com/mobile
Technologies used -
ASP.NET, C#, Web Service , Ajax, Jquery
SQL Server 2000, Third party email services ,third party php services etc
Key Tasks -
Coding of the various modules of the application
Developing stored procedures, triggers, functions and 3 tier architecture in dll.
_____________________________________________________________________________________
B) Project: http://www.dothejobcase.com/
Team Size: 2
Description
It is a US based project which contains student and professor time management and study management task.
Technologies used -
ASP.NET, C#, Web Service , Ajax, J Query
SQL Server 2005, Crystal reports, PDF generation using third party control
Key Tasks -
Coding of the various modules of the application
Developing stored procedures, triggers, functions and 3 tier architecture in dll
_______________________________________________________________
C) Project: Examination System [Internal Exam System ]
Duration: 7 December to january2010
Team Size: 1
Technologies used -
Vs 2008, c# Crystal reports, Nevron Third party control,
SQL Server 2005,
Description
This project contains the student examination according to the subject..
8 Reports using crystal reports and nevron chart
Key Tasks -
Coding of the various modules of the application
Developing reports
Developing stored procedures, functions with dll.
_____________________________________________________________________________________
D) Project: www.go4freelancers.com
Duration: 15 September to till now 2009
Team Size: 2
Description
Basically working like HYPERLINK "www.getafreelancer.com" www.getafreelancer.com . Which contain post project information, freelancer information, buyer information and other information. Implement Chatting application for buyer and freelancers
Technologies used -
ASP.NET, C#, Web Service , Ajax, Jquery
SQL Server 2005, Crystal reports
Key Tasks -
Coding of the various modules of the application
Developing reports
Developing stored procedures, triggers, functions and 3 tier architecture in dll.
Implement Chatting Application using Linq datasource with ajax
______________________________________________________________________________
E) Project: Online Tourism and Job Placement
Duration: September 2007 till January 2008
Team Size: 2
Description
Provides online information abouts hotels, rooms, categories. Like Naukri.Com
Technologies used -
ASP.NET, C#,Javascript, Ajax,Jquery
SQL Server 2005
Key Tasks -
Coding of the various modules of the application
Developing reports
Developing stored procedures, triggers, functions
Administration part of this project
Subscribe to:
Comments (Atom)