Posts by Maisa Berlofa • 15 points
4 posts
-
0
votes2
answers33
viewsA: Problem connecting tables using a foreign key
In your table orgao_exp there is no field orgao, which you are referencing in the table ATHLETE. CREATE TABLE orgao_exp ( id INT NOT NULL PRIMARY KEY, --orgao descricao VARCHAR(200) NOT NULL, sigla…
-
0
votes1
answer121
viewsQ: C# - Problems with Scriptmanager after Response
Response.ContentType = "application/pdf"; Response.AddHeader("content-disposition", "attachment;filename=Comprovante.pdf"); Response.Cache.SetCacheability(HttpCacheability.NoCache);. -- código de…
-
0
votes1
answer92
viewsQ: How to Recover C# Dynamic Fields for SQL
I’m making an ASP site that has dynamic fields in js: a = 0; function GetDynamicTextBox(value) { a++; return '<div class="container bg-light p-3 mb-2"><div class="form-group row…
-
0
votes1
answer51
viewsQ: Parameter Crossing in ASP.NET
I have the following code: Admin Page: private void Salvar() { Session.Add("Salvar", txtSobre.Text); try { if (txtSobre.Text != string.Empty) { Session["Salvar"] = txtSobre.Text.Trim(); } }…