同一方法之间的调用是模糊的Asp.Net C#

时间:2016-12-04 10:58:39

标签: c# asp.net .net gridview

我尝试在我的网站的其中一个页面topic.aspx中编辑GridView。我决定在网格视图的设计视图中使用自定义的DataSourceID更改DataSourceID,遵循本教程

http://www.c-sharpcorner.com/uploadfile/9f0ae2/gridview-edit-delete-and-update-in-asp-net/?authorFollow=true-9f0ae2-article&name=neha-sharma52

我从register.aspx.cs页面复制并粘贴了确切的SqlConnection,这是

SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);

作为topic.aspx.cs中的私有字段。

突然,我的注册页面不再起作用了。

中的“SqlConnection”
new SqlConnection(...)

之间的呼叫是“暧昧的”

SqlConnection.SqlConnection(string)

SqlConnection.SqlConnection(string)

我解除了我所做的一切,显然。我最后的办法是完全删除topics.aspx和topics.aspx.cs,但是......它会起作用吗?我非常怀疑。

我不知道我做错了什么,我只复制并粘贴了一行代码,突然之间,我的register.aspx和login.aspx不再起作用了。有什么问题?

编辑: 我正在使用的进口是

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

0 个答案:

没有答案