10.2.11

SAAS install

http://www.youtube.com/watch?v=u61wNjjQhv4

Android

How To:Install Android SDK on Win7
http://www.youtube.com/watch?v=YeWH6Bj1DYw&feature=related

Google I/O 2008 - An Introduction to Android
http://www.youtube.com/watch?v=yqCj83leYRE&feature=relmfu

http://www.youtube.com/watch?v=x1ZZ-R3p_w8

http://www.youtube.com/watch?v=j8XseabG5j0&feature=relmfu

demo
http://www.youtube.com/watch?v=1FJHYqE0RDg

6.2.11

Installing sharepoint Easy


sharepoint on window server 2008
:
1.)Sharepoint 2010 Beta Installation: Step 1 - Download and Installing Windows 2008 Updates
2.)SharePoint 2010 Beta Installation: Step 2 - Disabling Internet Explorer Security on Windows 2008
3.)SharePoint 2010 Beta Installation: Step 3 - Add Server Roles & .NET Framework 3.5.1
4.)SharePoint 2010 Beta Installation: Step 4 - Installing SQL Server 2008 64-bit
5.)SharePoint 2010 Beta Installation: Step 5 - Downloading and Installing SQL 2008 64-bit Service Pack
6.)SharePoint 2010 Beta Installation: Step 6 - Download Cumulative Update Package 2
7._SharePoint 2010 Beta Installation: Steps 7, 8, 9 - Installing additional prerequisites
8.)SharePoint 2010 Beta Installation: Step 10 - Installing SharePoint 2010 Beta on a single server
9.)Step 11 - Create a SharePoint 2010 Web Application and a Site Collection



-------------------------------------------------
step:1

How to download and install Vmware Workstation 7 for free (32bit and 64bit
-
https://www.vmware.com/tryvmware/?p=vmware-workstation&lp=1
http://www.youtube.com/watch?v=fnCf7sDpVXo&feature=related

-----------------------------------------------------
step:2
How to Install Windows Server 2008 on a Virtual Machine
http://www.microsoft.com/windowsserver2008/en/us/trial-software.aspx
https://profile.microsoft.com/RegSysProfileCenter/wizard.aspx?wizid=209d831f-96fe-4434-ae0b-29a0f5df0f67&lcid=1033
http://www.youtube.com/watch?v=fdyMyw1W2xc

----------------------------
step:3
Create a SharePoint 2010 Web Application
Create a SharePoint 2010 Web Application and a Site Collection
http://www.microsoft.com/downloads/en/confirmation.aspx?FamilyID=43325e40-8934-4c78-ac44-5f0eeb1d42a5&DisplayLang=EN&hash=XZxQ35QPW%2beTzCWZNoegCJncTSV%2bKqSpaB30FAXP39zAcrdm9oLfTrgpclkql/9hD3Zy%2bJ56wwemilVTqEB8XQ%3d%3d
http://www.youtube.com/watch?v=Itcq_VOEAn4&feature=related

---------------------------
step:4
Lesson 1 Creating a new sharepoint site
http://www.youtube.com/watch?v=oBpprYu8tz8&feature=related

1.2.11

window service and mail

1.)Sending Many emails through Window Service.
2.)use of POP3 to read Mails from gmail.

Sharepoint

intall:
http://www.youtube.com/watch?v=vuR0SVMjTwg&feature=related
http://www.youtube.com/watch?v=tJWT1EMMx2s&feature=related
-------------------------------------------------------------
http://www.youtube.com/watch?v=tF23-OceUc0

http://www.youtube.com/watch?v=19NLKQBXxoM&feature=related

26.1.11

Calling web service using jQuery in ASP.NET

Calling web service using jQuery in ASP.NET

http://codeasp.net/articles/asp-net/217/calling-web-service-using-jquery-in-asp-net

Introduction to WCF Service, remoting,webservice

http://beyondrelational.com/blogs/dinesh/archive/2010/07/11/introduction-to-wcf-service.aspx


ASP.NET and Ajax - using XmlHttpRequest

http://aspdotnetcodebook.blogspot.com/2009/04/aspnet-and-ajax-using-xmlhttprequest.html

Implement: Paging in Repeater or Datalist Control

http://codeasp.net/articles/asp-net/140/implement-paging-in-repeater-or-datalist-control

9.1.11

Add Cart

namespace Ecommerce.BLL
{
public class AddCart
{


public void BLL_AddItem( Products objBol)
{
ShoppingCart cart = new ShoppingCart();
String cartID = cart.GetShoppingCartId();
Int16 lintCartItemID = 0;

//Declare a datatable to be used as shopping cart
DataTable objDT;
DataRow objDR;

if (System.Web.HttpContext.Current.Session["SessionCart"] == null)
{
//Data table to be used as cart
objDT = new DataTable("Cart");

//Declaring Primary Key For Table
objDT.Columns.Add("ID", System.Type.GetType("System.Int32"));
DataColumn[] ldataColPK = new DataColumn[2];
ldataColPK[0] = objDT.Columns["ID"];
ldataColPK[0].AutoIncrement = true;
ldataColPK[0].AutoIncrementSeed = 1;
objDT.PrimaryKey = ldataColPK;

//Adding columns to datatable
objDT.Columns.Add("CartID", System.Type.GetType("System.String"));
objDT.Columns.Add("ProductID", System.Type.GetType("System.Int32"));
objDT.Columns.Add("Products_Name", System.Type.GetType("System.String"));
objDT.Columns.Add("Model", System.Type.GetType("System.String"));
objDT.Columns.Add("Size", System.Type.GetType("System.String"));
objDT.Columns.Add("Colour", System.Type.GetType("System.String"));
objDT.Columns.Add("ImageUrl", System.Type.GetType("System.String"));
objDT.Columns.Add("Price", System.Type.GetType("System.Double"));
objDT.Columns.Add("Description", System.Type.GetType("System.String"));
objDT.Columns.Add("Quantity", System.Type.GetType("System.Int32"));
objDT.Columns.Add("Stock", System.Type.GetType("System.Int32"));
objDT.Columns.Add("Amount", System.Type.GetType("System.Double"));
objDT.Columns["Amount"].Expression = "Price * Quantity";
}
else
{
objDT = (DataTable)System.Web.HttpContext.Current.Session["SessionCart"];
}

objDR = objDT.NewRow();
objDR["CartID"] = cartID;
objDR["ProductID"] = objBol.ProductsID;
objDR["Products_Name"] = objBol.Products_Name;
objDR["Model"] = objBol.Model;
objDR["Size"] = objBol.attributes_values_name;
objDR["Colour"] = objBol.Colour_name;
objDR["ImageUrl"] = objBol.Icon_image;
objDR["Price"] = objBol.Price;
objDR["Description"] = objBol.Products_Description;
objDR["Quantity"] = objBol.Quantity;
objDR["Stock"] = objBol.Stock;
System.Web.HttpContext.Current.Session["CartItemID"] = objDR["ID"].ToString();
lintCartItemID = Convert.ToInt16(objDR["ID"]);
objDT.Rows.Add(objDR);

//Add the datatable in a session variable
System.Web.HttpContext.Current.Session["SessionCart"] = objDT;

}
=======================================
shopping cart:

public String GetShoppingCartId()
{

// Obtain current HttpContext of ASP+ Request
System.Web.HttpContext context = System.Web.HttpContext.Current;

// If the user is authenticated, use their customerId as a permanent shopping cart id
if (context.User.Identity.Name != "")
{
return context.User.Identity.Name.ToString();
}

// If user is not authenticated, either fetch (or issue) a new temporary cartID
if (context.Request.Cookies["ASPNETCommerce_CartID"] != null)
{
return context.Request.Cookies["ASPNETCommerce_CartID"].Value;
}
else
{
// Generate a new random GUID using System.Guid Class
Guid tempCartId = Guid.NewGuid();

// Send tempCartId back to client as a cookie
context.Response.Cookies["ASPNETCommerce_CartID"].Value = tempCartId.ToString();

// Return tempCartId
return tempCartId.ToString();
}
}