using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Data.SqlClient;using System.Linq;using System.Web;using System.Web.SessionState;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.HtmlControls;using System.Web.UI.Page;namespace practice1{??? public partial class WebForm1 : System.Web.UI.Page??? {??????? private void page_load(object sender, System.EventArgs e)??????? {??????????? SqlConnection myconnection = new SqlConnection("sever=localhost;uid=sa;pwd=sa");??????????? try??????????? {??????????????? myconnection.Open();??????????????? Response.Write("數(shù)據(jù)導(dǎo)入成功!");??????????? }??????????? catch??????????? {??????????????? Response.Write("數(shù)據(jù)導(dǎo)入失??!");??????????? }??????? }??????? override protected void OnInit(System.EventArgs e)??????? {??????????? InitiallizeComponent();??????????? base.OnInit(e);??????? }??????? private void InitiallizeComponent()??????? {??????????? this.Load = new System.EventHandler(this.page_load);??????? }??? }????? }
C#報錯:事件"System.UI.Control.Load"只能出現(xiàn)在+=的左邊
WentworthPeach
2017-07-11 10:23:02