Posts by lssilveira • 54 points
4 posts
-
0
votes1
answer37
viewsA: Use of Firebird database from one PC to another
Which Firebird user were you using on the old server? It is created on the new server? Check through the gsec.exe on the old server the users that exist and create the users on the new server. gsec…
-
2
votes1
answer84
viewsA: Problem with foreach Shopping Cart
I think the problem is that you are inserting the order within the foreach, but actually you should do it outside of it and inside it you add only the order items. string estado = "A processar"; int…
-
2
votes1
answer65
viewsA: Android not finding class inside a Jar. What to do?
Check if, in Java Build Path, you scored "Include" in this jar. It may not be included when compiling and generating your app’s APK. Something like in the image below:…
-
-1
votes3
answers1705
viewsA: Fileupload without refresh on the page?
The problem is because an Asyncpostback is occurring, and to send the file must be a common Postback. So, just add a Postbacktrigger force the Updatepanel update. Assuming there is a "Send" button…