Wednesday, August 18, 2010

Where do i learn asp.net?

Dear friends


i have installed visual studio 2005 with oracle as back end. I work with C# codings. I am totally new. But capable of building projects at smaller levels. i need to learn the use of each and every control used in asp.net . I am capable of connecting to oracle and i can also save, update , delete , search records and i too know the basic use of gridview control. I have worked entirely using condings. A sample is given below





public partial class _Default : System.Web.UI.Page


{


public OracleCommand cmd;


public OracleDataAdapter da;


public OracleDataReader dr;


public DataSet ds;


public OracleConnection con;


string Strconnection = ConfigurationSettings.AppSettings[';Conne鈥?br>




protected void btnSave_Click(object sender, EventArgs e)


{


try


{


string query;


con = new OracleConnection(Strconnection);


con.Open();


query = ';insert into t1(id,name) values('; + txtId.Text + ';,''; + txtName.Text + ';')';;


OracleCommand cmd = new OracleCommand(query, con);


cmd.ExecuteNonQuery();


con.Close();


lb1.Text = ';Record inserted Successfully';;


}


catch


{


lb1.Text = ';No record inserted';;





}


finally


{


con.Close();


}





}





How do i go head with other controls. I want to know the usage of all controls through codings only. Where i learn. Is there any one to teach me online or through phone. Am i using ASP 2.0 in visual studio 2005? i dont know this. What is the frame work used in visual studio 2005. Guide me...Where do i learn asp.net?
Use torent and download tutorial from lynda.comWhere do i learn asp.net?
You are using ASP.NET 2.0 (generally) in Visual Studio 2005, Visual Studio 2008 defaults to .NET 3.0 or 3.5 I think. A good book which is really cheap to have as a reference on ASP.NET is Wrox's Professional ASP.NET 2.0 (http://product.half.ebay.com/Professiona鈥?/a> It's ';obsolete'; therefor cheap :) and still very useful. It'll cover a lot of standard topics like user management, profile management, database connectivity, master pages, Javascript Callbacks (although I prefer AJAX and webservices now), XML webservices, and so on.
Try checking out this website; http://w3schools.com/aspnet/default.asp it will be a great way to start.

No comments:

Post a Comment