I have the following updatePanel:
<asp:ScriptManager ID="ScriptManager1" runat="server" ChildrenAsTriggers="true" >
<Scripts>
</Scripts>
</asp:ScriptManager>
<asp:UpdatePanel ID="panelTreeVi...
I've got a project of a filemanager, which uses handler and it uses examples listing the directories and files of the project itself, I put an example listing directory that already works, however I can not do the same for file:
namespace File...
Someone has already encountered the following problem: When an error occurs that should be of type OracleException, but in its place an Exception is triggered, then the oracle processing is not applied because of this (the "..." are deprecated i...
I created a webservice in C # that returns me a string in the JSON pattern, I'm trying to consume this webservice with the volley but the same one returns me null, depending on the variation of the url it returns everything to me as if it were?...
I am having problems when an application tries to connect to the database, I get the ORA-12154 TNS error: could not resolve the connect identifier specified.
When I tinker or try to connect via pl / sql developer by sql plus everything happen...
In my method of adding files is giving the following exception to debug:
Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.
Method:
internal void AddArquivo(Model.Arquivo arquivo)
{...
I am developing a file manager and have already implemented some methods like addArquivo , listarArquivo , listarVersoes , etc.
But I need to edit it, see my DAL methods:
Add:
internal void AddArquivo(Model.Arquivo arq...
In the database the type is BigInt and in C # I am trying to convert to int and it can convert, but when it arrives in the lambda statement, it gives error.
long codpro = Int64.Parse(tb_CodigoProduto.Text.Substring(0,14));
db...
Firstly I'm developing a system in C # and using Sql Server as a database.
I would like to perform the following task:
When something is typed in the comboBox I update myself, through a search in the database, example:
I type A in the comb...