Monday, September 21, 2009

Comparing Web Site Projects and Web Application Projects

http://msdn.microsoft.com/en-us/library/aa730880(VS.80).aspx

http://www.techbubbles.com/aspnet/aspnet-website-vs-web-application-project/

kalyan explained this in a simple way.

Monday, September 14, 2009

Wednesday, July 22, 2009

Internet Explorer Developer Toolbar

IEDevToolBarSetup.msi

http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-
2D5E1DB91038&displaylang=en

helps in Validate HTML, View HTML object class names

Explore and modify the document object model (DOM)

Wednesday, February 11, 2009

StringCollection vs ArrayList

ArrayList is Obsolete.

ArrayList of strings, better or StringCollection .

Cost of Casting occurs in both cases when accessing item from both collections.

ArrayList we need to implement toString(), StringCollection Wrapper implements this method internally.

Friday, February 6, 2009

Client-side Paging for DataGrids

http://msdn.microsoft.com/en-us/magazine/cc164022.aspx

Example to use js array to bind a GridView

Using Ajax Data Controls we can do this.

here is the sample

"<" AjaxData:Gridview ID="ImagesList" runat="server" Visible=True ">"

"<"/AjaxData:GridViewBoundColumn>
""<"/AjaxData:GridViewBoundColumn">"

"<"/AjaxData:Gridview">"


function pageLoad(sender, e)
{
var data = new Array();
data[0] = { Id: 1, Name: "Scott" };
data[1] = { Id: 2, Name: "Tiger" };
data[2] = { Id: 3, Name: "Zeke" };
data[3] = { Id: 3, Name: "Joe" };
adc.set_dataSource(data);
adc.dataBind();
}