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 21, 2009
Tuesday, September 15, 2009
Microsoft.com > Microsoft Learning > Learning Catalog > Exam
if you are looking for learning exam index... here it is
Microsoft.com > Microsoft Learning > Learning Catalog > Exam
Learning Exam Index
http://www.microsoft.com/learning/en/us/exam.aspx
Microsoft.com > Microsoft Learning > Learning Catalog > Exam
Learning Exam Index
http://www.microsoft.com/learning/en/us/exam.aspx
Monday, September 14, 2009
.NET, AJAX and Google APIs brought together
I find this website http://www.reimers.dk/ very useful awesome work.
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)
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.
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
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();
}
here is the sample
"<" AjaxData:Gridview ID="ImagesList" runat="server" Visible=True ">"
"<"/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();
}
Subscribe to:
Posts (Atom)