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

ASP.NET

 
GeneralRe: Webmail application Pin
Michael Sync16-Aug-07 1:50
Michael Sync16-Aug-07 1:50 
GeneralRe: Webmail application Pin
Michael Sync16-Aug-07 1:53
Michael Sync16-Aug-07 1:53 
GeneralRe: Webmail application Pin
sankar.K16-Aug-07 2:29
sankar.K16-Aug-07 2:29 
AnswerRe: Webmail application Pin
Vasudevan Deepak Kumar16-Aug-07 0:15
Vasudevan Deepak Kumar16-Aug-07 0:15 
GeneralRe: Webmail application Pin
sankar.K16-Aug-07 1:23
sankar.K16-Aug-07 1:23 
QuestionSplitting TIFF pages using MODI in C# and Viewing Thumbnails in Picturebox Pin
mensdrol15-Aug-07 23:06
mensdrol15-Aug-07 23:06 
QuestionNeed to add a Sub-Report to a Main Report using Crystal Reports 10 in an ASP.NET Web Application?? Pin
Robin Khera15-Aug-07 22:45
Robin Khera15-Aug-07 22:45 
QuestionRequest From Pin
AnhTin15-Aug-07 22:33
AnhTin15-Aug-07 22:33 
hi all
i have problem when get value on textbox.
i have page default.aspx contain usercontrol demo.ascx
into demo.ascx have function load control dynamic

private void LoadControl(mapObj map)
{
try
{
strLayerName = searchlayer.SelectedValue;
clsBusQuery objQuery = new clsBusQuery();
DataTable dt = new DataTable();
dt = objQuery.LoadNameColunm(strLayerName);
string strTempValue = "";
for (int i = 0; i < dt.Columns.Count; i++)
{
string strFieldName = dt.Columns[i].ColumnName;
if (strFieldName != "id" && strFieldName != "gid" && strFieldName != "the_geom" && strFieldName != "Shape")
{
//khoi tao 1 row
htmTableRow = new HtmlTableRow();
//khoi tao cell
htmTaleCell = new HtmlTableCell();

lblLable = new Label();
lblLable.ID = "lbl" + strFieldName;
lblLable.Text = strFieldName + ": ";
htmTaleCell.Controls.Add(lblLable);
htmTableRow.Cells.Add(htmTaleCell);

htmTaleCell = new HtmlTableCell();
txtbox = new TextBox();
txtbox.ID = "txt" + strFieldName;
htmTaleCell.Controls.Add(txtbox);

htmTableRow.Cells.Add(htmTaleCell);

addform.Rows.Add(htmTableRow);
if (strTempValue == "")
{
strTempValue = strFieldName;
}
else
{
strTempValue += "," + strFieldName;
}
}
}
NameField.Value = strTempValue;
}
catch (Exception ex)
{
throw ex;
}
}

after load finish control i click button submit
and i get data on textbox by command
Resquest.From[namecontrol] with usercontrol have ctl02$namecontrol but it not get some body tell me
AnswerRe: Request From Pin
Imran Khan Pathan15-Aug-07 23:20
Imran Khan Pathan15-Aug-07 23:20 
GeneralRe: Request From Pin
AnhTin15-Aug-07 23:30
AnhTin15-Aug-07 23:30 
QuestionCache directory Pin
pjackson1815-Aug-07 22:18
pjackson1815-Aug-07 22:18 
QuestionRe: Cache directory Pin
Urs Enzler15-Aug-07 22:54
Urs Enzler15-Aug-07 22:54 
AnswerRe: Cache directory Pin
pjackson1816-Aug-07 19:22
pjackson1816-Aug-07 19:22 
GeneralRe: Cache directory Pin
Urs Enzler16-Aug-07 20:40
Urs Enzler16-Aug-07 20:40 
QuestionAJAX Calender and dropdown list problem Pin
swpnilekh15-Aug-07 22:00
swpnilekh15-Aug-07 22:00 
AnswerRe: AJAX Calender and dropdown list problem Pin
Mark Churchill16-Aug-07 16:44
Mark Churchill16-Aug-07 16:44 
QuestionGridView Edit through codebehind Pin
dhulipudi15-Aug-07 21:42
dhulipudi15-Aug-07 21:42 
QuestionHow to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath15-Aug-07 21:40
bijeshputhalath15-Aug-07 21:40 
AnswerRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync15-Aug-07 21:59
Michael Sync15-Aug-07 21:59 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath15-Aug-07 23:35
bijeshputhalath15-Aug-07 23:35 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync15-Aug-07 23:51
Michael Sync15-Aug-07 23:51 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath16-Aug-07 1:21
bijeshputhalath16-Aug-07 1:21 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync16-Aug-07 1:27
Michael Sync16-Aug-07 1:27 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath16-Aug-07 2:41
bijeshputhalath16-Aug-07 2:41 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync16-Aug-07 4:18
Michael Sync16-Aug-07 4:18 

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.