In my project, I need to communicate with a WebService and send data to it. But when I do the wrapping and sending, it presents the following error:
"Could not create SSL / TLS secure channel.".
Follow the code below:
Method Call:...
I wanted to populate a textarea or anything that looks like a list, with the items the guy selects from a dropdow. So I thought so, but I do not know how to feed the list ...
<textarea cols="1" id="lista">
<ul>
</ul&g...
I use Jquery MaskMoney in my inputs to treat decimais , so far so good, but I noticed that when I type values above 1,000,00 But when the value is a thousand where the point (999.99) does not go, the value...
How do I use the Join method to give an include of a value from another table? In this case I was going to use the MusicCall table and the MusicCount table
var chamadaMusicas = db.ChamadaMusicas
.Include(c => c.Chamad...
Good evening!
I have the following code:
<H3>Dados Cadastrais</H3>
<table class='dados'>
<tr>
<th>Avalista:</th>
<td>VINICIUS ALVES GONZALEZ</td>
<th>Contrato:</th>...
I have ListBox where the data source is ObservableCollection<string> .
I would like the items that started with "WARNING" to have the red font.
I would be able to do this using a DataTemplate , a Converter a...
I wanted to pass a URL through the ViewBag, but I could not. wanted to do asim:
ViewBag.Quantidade = "Você Não tem quantidades suficientes, para continuar você deve comprar um Pacote";
in this case the text "buy a package" was a link.
I'm looking for some simple way to save user data to file in C #.
In Java I always use the Properties class.
I'm looking for something similar in C #, I've already tried and found some answers but I still could not solve my problem.
F...
I have a model :
public class TalaoCode : ITalaoCode
{
[Key]
public int TalaoCodeId { get; set; }
[DisplayName("Equipe")]
public int EquipeId { get; set; }
[DisplayName("Equipe")]
public v...
How to load a GridView into the WebForm with some rows already selected?
I'm trying the following code but without success ...
protected void BindGridAcesso(int idSenha)
{
Usuario usuario = IdentificadorUsuario.ObterDado...