2
Answers

Insert data into sql from web form

 
 
<asp:DropDownList ID="ddltype" runat="server" CssClass="dropspace" Style="width: 95%; float: left">
<asp:ListItem >SELECT YOUR GADGE</asp:ListItem>
<asp:ListItem >Laptop</asp:ListItem>
<asp:ListItem >Desktop</asp:ListItem>
<asp:ListItem >Printer</asp:ListItem>
</asp:DropDownList>
 
 
 Everything works fine but the problem is that the list item SELECT YOUR GADGET  is also inserts into sql database if i dont select any gadget and click on submit button. Please help me out from this problem.
 
NOTE: THE BACKEND CODE IS WRITTEN IN C#.
Answers (2)
0
Munesh Sharma

Munesh Sharma

NA 17.1k 2.4m 10y

First of all be sure that you are importing/using (depending on language) the System.IO namespace for this to work. But what you can do is something like this


string pathToCreate = "~/UserFolders/" + TextBox1.Text;

if(Directory.Exists(Server.MapPath(pathToCreate))

{

   //In here, start looping and modify the path to create to add a number

   //until you get the value needed

}

 

//Now you know it is ok, create it

Directory.CreateDirectory(Server.MapPath(pathToCreate));