ikick.in - Latest published stories
1
kicks

What is session in asp.net

published 26 days, 16 hours, 7 minutes ago posted by faqssitecomfaqssitecom 27 days, 18 hours, 9 minutes ago
Monday, April 23, 2012 4:40:49 PM GMT Sunday, April 22, 2012 2:38:28 PM GMT
// To Store the value Session["sessionVariable"] = "This value will be stored in session";//store //To Retrieve the value string sessionVariable = (string)Session["sessionVariable"];//retrieve. (more)
category: Programming | clicked: 0 | comment | | source: www.faqssite.com
tags: session in asp.net
1
kicks

how to pass multiple values to command argument in gridview

published 26 days, 16 hours, 7 minutes ago posted by faqssitecomfaqssitecom 27 days, 18 hours, 8 minutes ago
Monday, April 23, 2012 4:40:49 PM GMT Sunday, April 22, 2012 2:39:48 PM GMT
how to pass multiple values to command argument in gridview Use the following code in your commandargument Code: and on server side to retrieve this values use Code: protected void GVUpdateValue_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "Update") { string[] commandArgs = e.CommandArgument.ToString().Split(new char[] { ',' }); string a= commandArgs[0]; string b = commandArgs[1]; //your logic for database udpate goes here } (more)
category: Programming | clicked: 0 | comment | | source: www.faqssite.com
tags: command argument in gridview
1
kicks

export to excel from gridview

published 26 days, 16 hours, 7 minutes ago posted by faqssitecomfaqssitecom 27 days, 18 hours, 6 minutes ago
Monday, April 23, 2012 4:40:49 PM GMT Sunday, April 22, 2012 2:41:25 PM GMT
protected void ExportToExcel(int iRCount)//iRCount is the total records count in gridview         {             if (gvRoutes.Rows.Count == 0) //if grid record count is 0, then return                 return;             int rowCount = iRCount;            gvRoutes.PageSize = iRCount;//show all the records so as can be exported to excel             gvRoutes.DataBind();              string fileName = "Filename";             Response.Clear();             Response.Buffer = true;            ... (more)
category: Programming | clicked: 0 | comment | | source: www.faqssite.com
tags: export to excel from gridview in asp.net csharp
1
kicks

Getting Started with Web applications development with servlets and JSP - Getting Started with Web applications development with servlets and JSP - Part 1: Setting Up Web Project - Vladimir Djurovic

published 26 days, 16 hours, 7 minutes ago posted by adminadmin 27 days, 17 hours, 59 minutes ago
Monday, April 23, 2012 4:40:49 PM GMT Sunday, April 22, 2012 2:48:06 PM GMT
Getting started: Setting Up Web Project This series of posts will describe creation of web applications with Java language, using servlets and JSP (Java Server Pages). We will assume that user has basic knowledge of Java and Java SE libraries. Servlets represent small Java programs which run on server and handle HTTP requests from clients. These are in some way similar to CGI scripts, i.e. they provide some sort of business logic which can be applied to a specific request. The advantage is that they ar... (more)
category: Programming | clicked: 0 | comment | | source: beyondrelational.com
1
kicks

Replica Watches – Do Your Research First

published 200 days, 14 hours, 58 minutes ago posted by sunnyloveysunnylovey 204 days, 23 hours, 47 minutes ago
Tuesday, November 01, 2011 5:49:15 PM GMT Friday, October 28, 2011 9:00:10 AM GMT
A replica watch is a copy, or imitation of a name brand watch that you can buy at a much lower cost. These replica watches can be a beautiful and affordable alternative to the extremely high cost real things. When shopping for a watch, sometimes it can feel like a necessity, and no one wants to feel like they cannot afford the very best. (more)
category: Companies | clicked: 0 | comment | | source: www.baifashion.com
tags: gucci watches, hublot replica, iwc portuguese, IWC Watches, replica watches, Rolex Watches
1
kicks

Hermes Replica Bags Are So Beautiful

published 200 days, 14 hours, 58 minutes ago posted by sunnyloveysunnylovey 207 days, 1 hour, 7 minutes ago
Tuesday, November 01, 2011 5:49:15 PM GMT Wednesday, October 26, 2011 7:40:38 AM GMT
They take their time in designing replicas. Hermes replica is not for those who wouldn’t appreciate excellent and luxury in replica products. The Messenger of the Greek gods has come down from Mount Olympus to give us valuable products in bags. (more)
category: Companies | clicked: 0 | comment | | source: www.handbagstin.com
tags: omega seamaster, replica watches, Rolex Sea Dweller, Rolex Watches, u boat watches
1
kicks

Prada Partners with the Devil

published 200 days, 14 hours, 58 minutes ago posted by sunnyloveysunnylovey 209 days, 16 minutes ago
Tuesday, November 01, 2011 5:49:15 PM GMT Monday, October 24, 2011 8:31:18 AM GMT
It doesn’t have to be true to be true when it comes to replica prada handbags. What have Prada got to do with women? That is a question I have not been able to answer until now. I found the answer when I discovered the generosity of Prada in making replicas. (more)
category: Companies | clicked: 0 | comment | | source: www.mimicwatches.com
tags: balenciaga handbags, cheap louis vuitton bags, Gucci Handbags, Prada Handbags, replica handbags
1
kicks

How to calculate distance with javascript and Google Maps API

published 311 days, 4 hours, 21 minutes ago posted by adminadmin 315 days, 20 hours, 16 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Saturday, July 09, 2011 12:31:15 PM GMT
Recently I got struck in one of my project to calculate distance between two locations using google maps API, after a few hours of googling, I found this article worth sharing with all. Really good work. Saved my hours of work. Thanks to the author Brian Cray... (more)
category: Programming | clicked: 1 | comment | | source: www.faqssite.com
1
kicks

Create Watermark TextBox using JavaScript

published 311 days, 4 hours, 21 minutes ago posted by adminadmin 315 days, 20 hours, 18 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Saturday, July 09, 2011 12:29:07 PM GMT
Create Watermark TextBox using JavaScript Follow this article http://yasserzaid.wordpress.com/20... (more)
category: Programming | clicked: 0 | comment | | source: www.faqssite.com
1
kicks

ASP.NET MVC Grid View using MVCContrib - Shiju Varghese's Blog

published 311 days, 4 hours, 21 minutes ago posted by faqssitecomfaqssitecom 317 days, 21 hours, 35 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Thursday, July 07, 2011 11:12:40 AM GMT
In this post, I demonstrate how you can use the  Grid UI helper of the MVCContrib project in your ASP.NET MVC  application. MVCContrib is a community project that adds the functionalities to Microsoft’s ASP.NET MVC Framework and makes the framework easier to use. MVCContrib provides several UI helpers and Grid UI helper is one of them. The Grid helper provides the functionalities of GridView control of ASP.NET GridView. The Grid component generates HTML tables for displaying data from a collection ... (more)
category: Programming | clicked: 20 | comment | | source: weblogs.asp.net
tags: asp.net mvc grid control, MVC gridview
1
kicks

What is XAML? - Hima's blog

published 311 days, 4 hours, 21 minutes ago posted by faqssitecomfaqssitecom 317 days, 21 hours, 51 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Thursday, July 07, 2011 10:56:47 AM GMT
What is XAML? It is Declarative Markup Language. It simplifies creating a UI for a .NET Framework application. It can create visible UI elements in XAML , and then separate the UI definition from the run-time logic by using code-behind files. This joined to the markup through partial class definitions. XAML represents the instantiation of objects in a special set of backing types defined in assemblies. It enables a workflow where separate parties can work on the UI and the logic of an application, using ... (more)
category: Programming | clicked: 1 | comment | | source: beyondrelational.com
1
kicks

Import Gmail Contacts In Asp.Net

published 311 days, 4 hours, 21 minutes ago posted by aspnetaspnet 319 days, 17 hours, 29 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Tuesday, July 05, 2011 3:18:33 PM GMT
Several times we need to develop web applications which require to import or fetch Gmail Contacts or address book. In this example i'm explaining how to fetch or import Gmail contacts in Asp.net web applications using C# and VB.NET. For getting started we need to download Google Data API and install on the system to get the desired dlls. Create a new website and visual studio and put these 3 dlls in BIN folder of application from the location google data API has been installed on ur system. ... (more)
category: Programming | clicked: 5 | comment | | source: csharpdotnetfreak.blogspot.com
tags: import contacts from gmail in asp.net
1
kicks

DotNetShoutout - Import Gmail Contacts In Asp.Net

published 311 days, 4 hours, 21 minutes ago posted by aspnetaspnet 319 days, 17 hours, 31 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Tuesday, July 05, 2011 3:16:32 PM GMT
everal times we need to develop web applications which require to import or fetch Gmail Contacts or address book. In this example i'm explaining how to fetch or import Gmail contacts in Asp.net web applications using C# and VB.NET. (more)
category: Programming | clicked: 2 | comment | | source: dotnetshoutout.com
tags: import contacts from gmail in asp.net
1
kicks

Error

published 311 days, 4 hours, 21 minutes ago posted by faqssitecomfaqssitecom 317 days, 21 hours, 48 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Thursday, July 07, 2011 10:59:48 AM GMT
SSAS #23 – Implement dimensional hierarchy in SSAS 2008 Let’s continue from my previous post, SSAS #22 – Dimensional Hierarchy Contained in a Single Dimensional Table (Star Schema). I need to assume that you have done all the following so far: Created an Analysis Services Project in BIDS Created a Data Source to point to your star schema relational database (with proper connection string and impersonation information) Created a Data Source View with the fact table(s) and dimension table(s) you need for... (more)
category: Programming | clicked: 0 | comment | | source: beyondrelational.com
1
kicks

“Apple's… Exclusive Supply Chain Of Advanced Technology [Is] Literally Years Ahead Of Anyone Else On The Planet”

published 311 days, 4 hours, 21 minutes ago posted by vijayvishwakarmavijayvishwakarma 319 days, 15 hours, 31 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Tuesday, July 05, 2011 5:16:18 PM GMT
An amazing take by an anonymous user on Quora on why Apple products sometimes seem so superior. Because they are. Because they get them before anyone else. We'll just quote it because it's great as it is: When new component technologies (touchscreens, chips, LED displays) first come out, they are very expensive to produce, and building a factory that can produce them in mass quantities is even more expensive. Oftentimes, the upfront capital expenditure can be so huge and the margins are small enough (and... (more)
category: Companies | clicked: 1 | comment | | source: www.businessinsider.com
tags: apple supply chain
1
kicks

Microsoft rolls out Office in the cloud - Yahoo! India Finance

published 311 days, 4 hours, 21 minutes ago posted by vijayvishwakarmavijayvishwakarma 319 days, 16 hours, 19 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Tuesday, July 05, 2011 4:28:46 PM GMT
SEATTLE (Reuters) - Microsoft Corp made its biggest move into the mobile, Internet-accessible world of "cloud" computing on Tuesday, taking the wraps off a revamped online version of its hugely profitable Office software suite. The world's largest software company is heaving its two-decade old set of applications -- including Outlook email, Excel spreadsheets and SharePoint collaboration tools -- into an online format so that customers can use them on a variety of devices from wherever they can get an I... (more)
category: Tech | clicked: 0 | comment | | source: in.finance.yahoo.com
tags: office365
1
kicks

Ext.NET 1.0.0 released

published 311 days, 4 hours, 21 minutes ago posted by aspnetaspnet 319 days, 17 hours, 33 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Tuesday, July 05, 2011 3:14:22 PM GMT
Quickly Build Rich AJAX Enabled Web Applications For ASP.NET Ext.NET is an open source ASP.NET (WebForm + MVC) component framework integrating the cross-browser Sencha Ext JS JavaScript Library. Includes 100+ high performance controls for Data Grids, Trees, Menus, Forms, Advanced Layouts and AJAX communication. Download and More: http://www.ext.net/download/ Example:http://examples.ext.net/ (more)
category: Programming | clicked: 0 | comment | | source: code2code.info
1
kicks

From Silverlight To HTML5 - CodeProject

published 311 days, 4 hours, 21 minutes ago posted by aspnetaspnet 319 days, 17 hours, 34 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Tuesday, July 05, 2011 3:13:08 PM GMT
Overview This article describes my experiences of taking a control written in Silverlight for Windows Phone 7, and making it cross-platform by re-implementing it using JavaScript and HTML5. My aim in writing this article was not to compare HTML5 / CSS3 / JavaScript and Silverlight feature-by-feature, if you squint a bit you can map most features from one to the other. Instead I wanted to capture the difference in approach and the general ‘feel’ of developing with these two very different technologie... (more)
category: Programming | clicked: 0 | comment | | source: www.codeproject.com
tags: silverlight to html5
1
kicks

Display your top selling products in ASP.NET using a Bubble Chart - .NET Development - Gal Ratner

published 311 days, 4 hours, 21 minutes ago posted by aspnetaspnet 319 days, 17 hours, 36 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Tuesday, July 05, 2011 3:11:53 PM GMT
System.Web.DataVisualization contains 34 types of charts. The most common of them is the Column chart on which I already blogged about in Display a sales chart with ASP.NET Chart control and Linq to SQL. Today I am going to take our sales chart one step further and display the top selling products for the year. Since we have multiple products for each time span, I chose a Bubble chart. First let’s look at the data model: We are going to group our year’s sales into months and extract the top 5 sell... (more)
category: Programming | clicked: 2 | comment | | source: galratner.com
tags: charts in asp.net
1
kicks

How to work with Hierarchal data in Entity Framework

published 311 days, 4 hours, 21 minutes ago posted by aspnetaspnet 320 days, 3 hours, 5 minutes ago
Thursday, July 14, 2011 4:26:52 AM GMT Tuesday, July 05, 2011 5:42:46 AM GMT
INTRODUCTION A couple of years back I blogged about how to retrieve the hierarchal data using T-SQL features. You can read that blog post here. Today life brought to me the same cross roads and I decided to take new route , so instead of using the T-SQL approach I preferred to go towards the Entity Framework. Microsoft has recently done some great enhancements in this data access framework especially with the release of version 4.1 , you can also take the advantage of code first approach. In this post I... (more)
category: Programming | clicked: 1 | comment | | source: www.dotnetfunda.com
Previous 1 2 3 4 5 6 7 8 9 10 ... 13 14 Next