我创建了两个表:Artist和Song。艺术家表有字段Artistid和ArtistName,Song表有SongID,Lyrics,Description和Artistid作为辅助键。我有一个Web表单来添加包含文本框和提交按钮的新艺术家。
代码如下:
<head id="Head1" runat="server">
<title></title>
</head>
<body>
<form id="form1" method ="post">
<div style="width: 960px; color: black; border: 2px solid black; text-align:"center">
<table>
<tr>
<td> <label>Artist: </label>
<input type="text" name ="textArtist" id ="txtartist" value = "" />
</td>
</tr>
<tr>
<td>
<p align="center" >
<input type = "button" id= "btnArtist" value ="submit" />
</p>
</td>
</tr>
</table>
</div>
</form>
</body>
我的要求是我将在文本框中输入一些名称并单击提交,同一名称应显示在数据库的艺术家表中。 我还使用Mygenerations创建了一个带有艺术家和歌曲表的命名空间。我编写了foll代码,但它没有显示数据库中的数据。它无法正常工作。请帮忙。 后面的代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using NCI.EasyObjects ;
using TestSong ;
public partial class _Default : System.Web.UI.Page
{
string strcon = "Company";
protected void Page_Load(object sender, EventArgs e)
{
}
void btnartist_onclick(object sender, EventArgs e)
{
string s_artistname = textArtist.Value;
Artist oArtist = new Artist(strcon);
oArtist.Where.ArtistName.Value = s_artistname;
if (!oArtist.Query.Load())
{
oArtist.AddNew();
oArtist.ArtistName = textArtist.Value;
oArtist.Save();
}
}
}
此外,我收到textArtist.Value
行的错误。当前上下文中不存在错误textArtist
。请告诉我哪里出错了。
答案 0 :(得分:1)
可能有更多原因但是现在你已经使用了txtArtist作为Id。所以使用这个
self.contentSize
和
string s_artistname = txtArtist.Value;
答案 1 :(得分:0)
如果您想在代码隐藏
中访问它,请使用runat=server
<input type="text" name ="textArtist" id ="txtartist" runat="server" />