Click here to Skip to main content
15,896,207 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
hi,

my project is management system.

i need one new branch for example

form label name is

branch name
branch id
branch city
state
phone no

then all the details stored in management database

after i store the data into the new branch.

how to create please help me
Posted
Comments
[no name] 25-Mar-12 11:23am    
What have you tried?

How to create what? Clarify your question. Provide the details like we are not sitting next to you working on the same project.
Sergey Alexandrovich Kryukov 25-Mar-12 14:09pm    
Right now, it's not really a question.
--SA

Hello

If you use SQL Server, and you need to create a table dynamically:
Creating a new table in SQL Server from ADO.NET DataTable

Look at this too. It's iteresting:
C# creating a table and inserting rows in to SQL Server 2008
 
Share this answer
 
v2
Comments
ProEnggSoft 25-Mar-12 12:38pm    
Good links. +5
Shahin Khorshidnia 25-Mar-12 13:22pm    
Thank you very much!
var newtr=document.createElement("tr");
var newtd=document.createElement("td");
var output="<input type="\"textfield\"";&lt;br" mode="hold" /> newtd.innerHtml=output;
newtr.appendChild(newtd);
function create_row()
{
document.getElementById("table1").appendChild(newtr);
}










 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



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