Convertendo um campo do tipo Int16 para Boolean em ASP.NET no ficheiro aspx ou ascx, para poder ser usado numa CheckBox, podemos utilizar o seguinte código:
<%# Convert.ToBoolean((DataBinder.Eval(Container.DataItem, "myInt16value")) )%>
Convertendo um campo do tipo Int16 para Boolean em ASP.NET no ficheiro aspx ou ascx, para poder ser usado numa CheckBox, podemos utilizar o seguinte código:
<%# Convert.ToBoolean((DataBinder.Eval(Container.DataItem, "myInt16value")) )%>
You can access the Datalist values of a row like this :
In the ItemDataBound event of the DataList,
if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType ==
ListItemType.AlternatingItem){
object row_items=e.Item.DataItem;
// If you have a column called customerId,
object items = e.Item.DataItem;
string str1=Convert.ToString(DataBinder.Eval(row_items,”c ustomerId”));
}
Additional info:
You can find the controls in thge ItemTemplate of your datalist :
In ItemDataBound event :
eg :
((LinkButton)e.Item.FindControl(“LinkB”)).CommandA rgument=e.Item.ItemIndex.T
oString();
This will set the commandargument for the Linkbutton, LinkB.
The above code is in C#.
You can easily convert it into VB.NET.Let me know if you have any
problems.
Marshal Antony
A solução para este problema consiste em colocar uma pequena linha de código no topo do ficheiro XML pretendido.
One of the useful features in a Windows desktop application that many programmers and end-users take for granted is message boxes. Two of the most common types of message boxes are alerts and confirms. A confirm message box prompts the user if they want to continue, and provides two choices: “OK” and “Cancel”. Clicking “OK” confirms the action, while “Cancel” cancels it.
Private Sub Page_Load(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles MyBase.Load If (Not Page.IsPostBack) Then Me.BtnDelete.Attributes.Add("onclick", _ "return confirm('Are you sure you want to delete?');") End If End Sub