我需要在ASP.NET网页(aspx)中创建一个显示用户名列表的小窗口,当你点击用户名时,我需要一个新的浏览窗口(不是标签)来打开特定的大小。我可以处理打开新的浏览器窗口,假设我使用的控件让我进入函数后面的代码我可以调用....
string url = "http://www.dotnetcurry.com";
ScriptManager.RegisterStartupScript(this, this.GetType(), "OpenWin", "<script>openNewWin ('" + url + "')</script>", false);
这是链接页面中的标记。
<script language="javascript" type="text/javascript">
function openNewWin(url) {
var x = window.open(url, 'mynewwin', 'width=600,height=600,toolbar=1');
x.focus();
}
</script>
1。)我应该使用哪些控件来解决这个问题,从数据库中获取相应的用户名后,结构是什么样的?
这是我最接近的...这段代码使用了一个ASP.NET项目符号列表,我试图绑定到一个HTML链接列表,我想在任何地方找不到POINT,但是让我进入代码隐藏。相反,此代码实际上在页面上呈现为HTML(它不会被解析为超链接..)
protected void Page_Load(object sender, EventArgs e)
{
UsersBulletedList.DataSource = theContext.GetOnlineFavorites(4);
UsersBulletedList.DataBind();
}
public IQueryable<String> GetOnlineFavorites(int theUserID)
{
List<String> theUserList = new List<String>();
IQueryable<Favorite> theListOfFavorites= this.ObjectContext.Favorites.Where(f => f.SiteUserID == theUserID);
foreach (Favorite theFavorite in theListOfFavorites)
{
string theUserName = this.ObjectContext.SiteUsers.Where(su => su.SiteUserID == theFavorite.FriendID && su.LoggedIn == true).FirstOrDefault().UserName;
yourOnlineFavorites.Add("<a href='RealTimeConversation.aspx?UserName=" + theUserName + "'>" + theUserName + "</a>");
//this needs to help me get into a codebehind method instead of linking to another page.
}
return yourOnlineFavorites.AsQueryable();
}
答案 0 :(得分:2)
我会在您的网页上创建Repeater
并绑定GetOnlineFavorites
方法的结果。在Repeater
内,添加LinkButton
一个ItemCommand
事件,将您的脚本添加到页面中。
标记:
<asp:Repeater ID="repeater" runat="server" OnItemCommand="repeater_ItemCommand">
<ItemTemplate>
<asp:LinkButton runat="server" ID="linkButton"
Text='<%# Eval("PropertyFromBindingCollection") %>'
CommandName="OpenWindow"
CommandArgument='<%# Eval("AnotherProperty") %>' />
</ItemTemplate>
</asp:Repeater>
在此处,Text
的{{1}}属性和LinkButton
的{{1}}属性将设置为您馆藏中的某些属性。
代码背后:
CommandArgument
现在,当用户点击其中一个LinkButtons时,它会触发Repeater
的{{1}}事件,检查protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostBack)
{
repeater.DataSource = theContext.GetOnlineFavorites(4);
repeater.DataBind();
}
}
protected void repeater_ItemCommand(object sender, RepeaterCommandEventArgs e)
{
if(e.CommandName == "OpenWindow")
{
string arg = e.CommandArgument; // this could be the url, or a userID to get favorites, or...?
//Your open window script
}
}
(在LinkButton上设置),然后获取ItemCommand
上设置了Repeater
。如果将CommandName
设置为URL,则可以在OpenWin脚本中使用该URL,否则使用您设置的任何数据作为参数来获取要打开的URL。