Posts by Dimas Pante • 200 points
3 posts
-
1
votes1
answer2355
viewsQ: How to export data to Mercadolivre? [PHP/JSON]
I downloaded the SDK from Mercadolivre: https://github.com/mercadolibre/php-sdk I just honestly couldn’t find a way to export data there. Both in Gib and in ML itself has tutorials how to read…
-
2
votes1
answer41
viewsA: Sort DESC Asp
In Datagrid, add AllowSorting="True", and in the column adds the DESC: <asp:BoundColumn DataField="DATA_CADASTRO" SortExpression="DATA_CADASTRO DESC" HeaderText="Data Ativação"…
-
5
votes5
answers631
viewsA: If Else with functions
In fact it is better you create the functions before and when you need to call them, use the if. For example: function Save(){ ... } function NoSave(){ ... } if(a > 1){ Save(); }else{ NoSave(); }…