Monday, 7 July 2014

About Bede's

St Bede's College, Shimla, established in 1904, is a historical and educational landmark of Northern India which aims, primarily, at higher education and training of young women. It has been imparting higher education in the fields of Arts, Science, Commerce and Teachers' Training Course(T.T.C).The college celebrated its centenary in 2004, and had a commemorative postal stamp of Rs.5/-released. St.Bede's college is recognized by the University Grants Commission under 2(f) and 12(b), and is the only college in HP State accredited 'A' Grade by UGC-NAAC.
St. Bede's is run by the Sisters of Jesus and Mary Congregation. It was founded by St. Claudine Thevene, and she was convinced that only knowledge and love of God could transform the society of her time. Her aim was to make God known and loved through Christian education of the young. The Congregation has spread far and wide into all continents. We are committed to give our students a sense of God and the ability to recognize the divine in themselves and their fellow beings, and thus to respect the dignity and uniqueness of each individual. It has been institution's consistent endeavour to provide quality education to its students; inculcate discipline as well as provide an opportunity for all round personal development.
 
Ever expanding the frontiers of knowledge, St.Bede's offers regular UG courses in Arts, Science, Commerce; Honours in English, Economics and Geography; B.Sc (Hons) in Bio-Technology and Microbiology; B.B.A, B.C.A, and also PG courses like PGDCA, M.A. in English . MSc in Dietetics is offered through IGNOU.

Sunday, 6 July 2014

Upcoming Event

july 2014  
  1st -Elections.   8nd - Oath Taking., 15th - Last date for M.A. admission., 16th - Fresher's welcome. 18th-M.A. Classes Begin. 20th-N.S.S. Tree Plantation 23rd-Return Socail. 30th-Outreach(Theog).

About Bede's

St Bede's College, Shimla, established in 1904, is a historical and educational landmark of Northern India which aims, primarily, at higher education and training of young women. It has been imparting higher education in the fields of Arts, Science, Commerce and Teachers' Training Course(T.T.C).The college celebrated its centenary in 2004, and had a commemorative postal stamp of Rs.5/-released. St.Bede's college is recognized by the University Grants Commission under 2(f) and 12(b), and is the only college in HP State accredited 'A' Grade by UGC-NAAC. St. Bede's is run by the Sisters of Jesus and Mary Congregation. It was founded by St. Claudine Thevene, and she was convinced that only knowledge and love of God could transform the society of her time.

Sunday, 29 June 2014

how to add blog recently post in your site

just put this code in html

<div class="eggTray">
<script src="http://helplogger.googlecode.com/svn/trunk/listbadge.js">{"pipe_id":"1a6640e2a78b2c6e736f2220529daae5","_btype":"list",
"pipe_params":{"URL":"YOUR-BLOG/feeds/posts/default"},
"hideHeader":"false","height":"500","count": 8 }</script>
<div style="font-family: arial, sans-serif; font-size: 9px;" class="ycdr"><a href="http://helplogger.blogspot.com/2012/05/recent-posts-widget-with-thumbnails-for.html" target="_blank" title="Grab this widget">Recent Posts Thumbnails</a> <a href="http://helplogger.blogspot.com/" target="_blank">Blogger Widget</a></div><noscript>Your browser does not support JavaScript!</noscript></div>
<style type=text/css>
.eggTray {margin:10px 0px;padding:0px;}
.ybr li  {border-bottom:0px #cccccc dotted; padding:0px 0px 10px 0px!important;}
.pipesTitle {padding-top:0px;}
.pipesDescription {display:true;}
.ycdr {background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgD8LTW3BFDy1zH7gC-bqn0WrChtK1V2DK_o1QlKYTEow-kh5AstHA7n2k1g5eIBay_xr35Gc3Ue7yv-wuCaoqMAVuUf1-ygFxiMUXRAG3DjUnkhcgspO_WIpDmkHHn46PItZfSrpqgEJY/s1600/logo.png) 0px 0px no-repeat; padding: 1px 0px 0px 19px; height:14px; margin: 4px 0px 0px 0px;line-height:14px;}
.ycdr, .ycdr a {color:#999999;}
.widget .popular-posts ul {padding-left:0;}
</style>

jitenderkapil: How to retrieve data from database in asp.net usin...

jitenderkapil: How to retrieve data from database in asp.net usin...: Retrieve data from database table using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Se...

Tuesday, 22 January 2013

How to retrieve data from database in asp.net using c#

Retrieve data from database table

using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
using System.IO;

public partial class _Default : System.Web.UI.Page
{
    SqlCommand cmd = new SqlCommand();
    DataRow dr;
    protected void Page_Load(object sender, EventArgs e)
    {
        cmd.CommandText = "SELECT * FROM lab WHERE Regn_No ='"+Label1.Text+"'";
        cmd.Connection = conn;

      //  cmd.Parameters.Add("@Regn_No", SqlDbType.VarChar).Value = TextBox1.Text;
        SqlDataReader dr;
        dr = cmd.ExecuteReader();
        dr.Read();
     //   Label1.Text = dr[2].ToString();
        Label2.Text = dr[3].ToString();
        Label20.Text = dr[1].ToString();
        Label21.Text = dr[2].ToString();
        Label22.Text = dr[4].ToString();
        Label23.Text = dr[5].ToString();
        Label24.Text = dr[6].ToString();
        Label25.Text = dr[7].ToString();
        Label26.Text = dr[8].ToString();
        //GridView1.DataBind();
        dr.Close();
        //TextBox1.Text = "";
        //TextBox2.Text = "";
        //TextBox3.Text = "";
    }
}