Click here to Skip to main content
15,900,110 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: md5 decryption Pin
Vasudevan Deepak Kumar17-Jun-09 1:31
Vasudevan Deepak Kumar17-Jun-09 1:31 
Questionnot getting value in request.cookies("lang") Pin
anbusenthil17-Jun-09 0:00
anbusenthil17-Jun-09 0:00 
Questionhow to generate verification code Pin
janani1316-Jun-09 23:40
janani1316-Jun-09 23:40 
AnswerRe: how to generate verification code Pin
himanshu256117-Jun-09 0:05
himanshu256117-Jun-09 0:05 
QuestionHow to insert values from Text area to database Pin
shijivijayan16-Jun-09 23:16
shijivijayan16-Jun-09 23:16 
AnswerRe: How to insert values from Text area to database Pin
himanshu256117-Jun-09 0:00
himanshu256117-Jun-09 0:00 
GeneralRe: How to insert values from Text area to database Pin
shijivijayan17-Jun-09 0:04
shijivijayan17-Jun-09 0:04 
GeneralRe: How to insert values from Text area to database Pin
himanshu256117-Jun-09 0:24
himanshu256117-Jun-09 0:24 
Hi,
try this
 string[] lines = Regex.Split(TextBox1.Text, "\r\n");
     string sql ="Insert into "+"Table Name("+ lines[0].Replace(' ',',')+ ") values(";
     for (int i=1;i<lines.Length;i++)
     {
         sql = sql + lines[i].Replace(' ', ',') + ")"; 
//Write code to insert into database here
     }


himanshu

GeneralRe: How to insert values from Text area to database Pin
shijivijayan17-Jun-09 0:44
shijivijayan17-Jun-09 0:44 
AnswerRe: How to insert values from Text area to database Pin
Baran M17-Jun-09 0:09
Baran M17-Jun-09 0:09 
QuestionFormview update problem [modified] Pin
yorockk16-Jun-09 22:57
yorockk16-Jun-09 22:57 
AnswerRe: Formview update problem Pin
Herman<T>.Instance17-Jun-09 0:00
Herman<T>.Instance17-Jun-09 0:00 
GeneralRe: Formview update problem Pin
yorockk17-Jun-09 5:37
yorockk17-Jun-09 5:37 
GeneralRe: Formview update problem Pin
yorockk17-Jun-09 23:33
yorockk17-Jun-09 23:33 
GeneralRe: Formview update problem Pin
yorockk21-Jun-09 5:20
yorockk21-Jun-09 5:20 
GeneralRe: Formview update problem Pin
yorockk6-Jul-09 8:38
yorockk6-Jul-09 8:38 
Questionhow to implement webparts personalization Pin
lakshmichawala16-Jun-09 22:51
lakshmichawala16-Jun-09 22:51 
AnswerRe: how to implement webparts personalization Pin
Abhijit Jana16-Jun-09 23:00
professionalAbhijit Jana16-Jun-09 23:00 
GeneralRe: how to implement webparts personalization Pin
lakshmichawala16-Jun-09 23:05
lakshmichawala16-Jun-09 23:05 
GeneralRe: how to implement webparts personalization Pin
himanshu256116-Jun-09 23:17
himanshu256116-Jun-09 23:17 
QuestionError in javascript to open new window - netilla platform asp.net Pin
milan16-Jun-09 22:00
milan16-Jun-09 22:00 
QuestionHow to open an existing word doc from a form? Pin
kvalli16-Jun-09 21:27
kvalli16-Jun-09 21:27 
AnswerRe: How to open an existing word doc from a form? Pin
Manas Bhardwaj16-Jun-09 22:01
professionalManas Bhardwaj16-Jun-09 22:01 
QuestionJava script. Pin
Lijo Rajan16-Jun-09 21:21
Lijo Rajan16-Jun-09 21:21 
AnswerRe: Java script. Pin
Manas Bhardwaj16-Jun-09 22:12
professionalManas Bhardwaj16-Jun-09 22:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.