Click here to Skip to main content
15,891,431 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Add control to panel Runtime Pin
omlac8-Oct-08 0:07
omlac8-Oct-08 0:07 
QuestionExport Datagrid to Excel using ASP.Net Pin
mullamootil7-Oct-08 23:36
mullamootil7-Oct-08 23:36 
AnswerRe: Export Datagrid to Excel using ASP.Net Pin
HemJoshi7-Oct-08 23:53
HemJoshi7-Oct-08 23:53 
GeneralRe: Export Datagrid to Excel using ASP.Net Pin
mullamootil8-Oct-08 20:14
mullamootil8-Oct-08 20:14 
AnswerRe: Export Datagrid to Excel using ASP.Net Pin
Sneha Bisht8-Oct-08 1:44
Sneha Bisht8-Oct-08 1:44 
GeneralRe: Export Datagrid to Excel using ASP.Net Pin
calf20088-Oct-08 15:17
calf20088-Oct-08 15:17 
QuestionProblem with Placeholder control [modified] Pin
eyeseetee7-Oct-08 23:30
eyeseetee7-Oct-08 23:30 
AnswerRe: Problem with Placeholder control Pin
thomasa8-Oct-08 0:01
thomasa8-Oct-08 0:01 
The code
if (c.GetType().ToString().Equals("System.Web.UI.WebControls.TextBox"))                  
{

spessifies that it only goes into the statment if it is an TextBox
try
Label lb2;
TextBox tb2;
foreach (Control c in PlaceHolder2.Controls)             
{
if (c.GetType().ToString().Equals("System.Web.UI.WebControls.TextBox"))                  
{ 
  TextBox tb2 = (TextBox)c;                   
}
else if(c.GetType().ToString().Equals("System.Web.UI.WebControls.Label"))
{
  lb2 = (Label)c;
}
}
}
SqlCommand cmdinsertliftunion = new SqlCommand("INSERT INTO table(field1, field2) VALUES ('" + lb2.Text + "', '" + tb2.Text + "')", con);                   cmdinsert.ExecuteNonQuery();                   

GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 0:15
eyeseetee8-Oct-08 0:15 
GeneralRe: Problem with Placeholder control Pin
thomasa8-Oct-08 1:16
thomasa8-Oct-08 1:16 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 0:21
eyeseetee8-Oct-08 0:21 
GeneralRe: Problem with Placeholder control Pin
thomasa8-Oct-08 1:18
thomasa8-Oct-08 1:18 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 1:23
eyeseetee8-Oct-08 1:23 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 1:28
eyeseetee8-Oct-08 1:28 
GeneralRe: Problem with Placeholder control [modified] Pin
thomasa8-Oct-08 1:58
thomasa8-Oct-08 1:58 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 2:26
eyeseetee8-Oct-08 2:26 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 2:31
eyeseetee8-Oct-08 2:31 
GeneralRe: Problem with Placeholder control Pin
thomasa8-Oct-08 3:16
thomasa8-Oct-08 3:16 
GeneralRe: Problem with Placeholder control Pin
thomasa8-Oct-08 3:40
thomasa8-Oct-08 3:40 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 4:12
eyeseetee8-Oct-08 4:12 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 21:47
eyeseetee8-Oct-08 21:47 
GeneralRe: Problem with Placeholder control Pin
J4amieC8-Oct-08 1:44
J4amieC8-Oct-08 1:44 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 2:22
eyeseetee8-Oct-08 2:22 
GeneralRe: Problem with Placeholder control Pin
J4amieC8-Oct-08 2:37
J4amieC8-Oct-08 2:37 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 2:46
eyeseetee8-Oct-08 2:46 

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.