English 中文(简体)
B. 选用的电网单记录
原标题:Bind selected record to grid fro xml sheet
  • 时间:2010-12-07 18:49:47
  •  标签:
  • asp.net

页: 1

<markers>
  <marker name="abc1" label="xyz" place="mno">
  <marker name="pqr2" label="lmn" place="mno">
  <marker name="abc3" label="xyz" place="mno">
  <marker name="pqr4" label="lmn" place="mno">
  <marker name="abc5" label="xyz" place="mno">
  <marker name="pqr6" label="lmn" place="mno">
</markers>
  1. I have to bind this xml file to a grid view and with "name" field as linkbutton.
  2. Clicking on the linkbutton should display a separate grid displaying only that particular record with edit/delete options.

第一部分 我能够在大角的帮助下成功开展工作。 但我无法完成第二部分的工作。 我对规划工作非常新。 请帮助我结婚。 非常感谢。

问题回答

我将Xml分成一个班级。

class Marker
{
   public string Name{get;set;}
   public string Label{get;set;}
   public string Place{get;set;} 
}

并且将数据与例如标识物体清单联系起来。 http://msdn.microsoft.com/en-us/library/ms972948.aspx”rel=“nofollow”MSDN ,用于如何将数据约束/编辑到一个物体数据来源,从而可以通过电网格控制进行编辑。

希望更进一步。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签