Category Archives: Code Snippets

Code Snippets ASP.Net Uncategorized

Convert Int16 to Bool

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")) )%>

Code Snippets ASP.Net

access to datalist value

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

Code Snippets Tips & tricks XML

Como colocar acentos num ficheiro XML

A solução para este problema consiste em colocar uma pequena linha de código no topo do ficheiro XML pretendido.



  • Print Friendly and PDF