Click here to Skip to main content
15,895,142 members

How do i.fix my linkbutton on my website because when I click on it, it won't delete but it's suppose to?

BigBoss777 asked:

Open original thread
Hi my delete button which is a LinkButton doesn't work while it took a long time for me to type the code for it to work but I don't know what's wrong with it, please help. Here is some code for it.

using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class fileuploader : System.Web.UI.Page
{

protected void Page_Load(object sender, EventArgs e)
{
show_data();
}

private void show_data()
{
DirectoryInfo d = new DirectoryInfo(MapPath("~/data/"));
FileInfo[] r = d.GetFiles();
DataTable dt = new DataTable();
dt.Columns.Add("path");
for (int i = 0; i < r.Length; i++)
{
DataRow row=dt.NewRow();
row["path"] = "~/data/" + r[i].Name;
dt.Rows.Add(row);
}
DataList1.DataSource = dt;
DataList1.DataBind();
}
protected void Button1_Click(object sender, EventArgs e)
{
if (FileUpload1.HasFile)
{
string path = "~/data/" + Guid.NewGuid().ToString() + "" + Path.GetExtension(FileUpload1.FileName);
FileUpload1.SaveAs(MapPath(path));
Response.Write("Save Succesfully");
show_data();
}
}
protected void LinkButton1_Command(object sender, CommandEventArgs e)
{
file.Delete(MapPath(e.CommandArgument.ToString()));
Response.Write("File Deleted Succesfully");
show_data();
}
}

What I have tried:

I've been told to add Onclick="LinkButton1_Command" but I'm not where to add it, is it in the source code and please list some steps I could follow as the solution for that
Tags: C#, ASP.NET

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900