Click here to Skip to main content
15,898,993 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Request.Querystring "undefined" Pin
Abhishek Sur2-Nov-09 21:36
professionalAbhishek Sur2-Nov-09 21:36 
GeneralRe: Request.Querystring "undefined" Pin
garfield1852-Nov-09 21:45
garfield1852-Nov-09 21:45 
GeneralRe: Request.Querystring "undefined" Pin
Abhishek Sur2-Nov-09 21:48
professionalAbhishek Sur2-Nov-09 21:48 
GeneralRe: Request.Querystring "undefined" Pin
Christian Graus2-Nov-09 21:58
protectorChristian Graus2-Nov-09 21:58 
GeneralRe: Request.Querystring "undefined" Pin
Abhishek Sur2-Nov-09 22:21
professionalAbhishek Sur2-Nov-09 22:21 
GeneralRe: Request.Querystring "undefined" Pin
Christian Graus2-Nov-09 22:33
protectorChristian Graus2-Nov-09 22:33 
GeneralRe: Request.Querystring "undefined" Pin
Abhishek Sur3-Nov-09 0:07
professionalAbhishek Sur3-Nov-09 0:07 
QuestionGet Controls in htmlstring Pin
Imran Khan Pathan2-Nov-09 20:36
Imran Khan Pathan2-Nov-09 20:36 
Hey.
I am working on application in which I want to create dynamic controls and retrives them in html string.

for example.

public string CreateControl()
{
HtmlTable hTable = new HtmlTable();
hTable.CellPadding = 2;
hTable.CellSpacing = 2;
hTable.Width = "100%";

HtmlTableRow hRow = new HtmlTableRow();
HtmlTableCell hCell = new HtmlTableCell();

hCell.InnerText = "Username";
hRow.Cells.Add(hCell);
hTable.Rows.Add(hRow);
// Now here I want to return created controls in html string.
}

It should be like this
<table CellPadding=2 CellSpacing = 2 Width=100><tr><td>Username</td></tr></table>

Thanks
Imrankhan

please don't forget to vote on the post that helped you.

AnswerRe: Get Controls in htmlstring Pin
Christian Graus2-Nov-09 20:41
protectorChristian Graus2-Nov-09 20:41 
GeneralRe: Get Controls in htmlstring Pin
Imran Khan Pathan2-Nov-09 20:49
Imran Khan Pathan2-Nov-09 20:49 
GeneralRe: Get Controls in htmlstring Pin
Christian Graus2-Nov-09 20:51
protectorChristian Graus2-Nov-09 20:51 
GeneralRe: Get Controls in htmlstring Pin
Imran Khan Pathan2-Nov-09 21:02
Imran Khan Pathan2-Nov-09 21:02 
GeneralRe: Get Controls in htmlstring Pin
sashidhar2-Nov-09 21:28
sashidhar2-Nov-09 21:28 
GeneralRe: Get Controls in htmlstring Pin
Christian Graus2-Nov-09 22:33
protectorChristian Graus2-Nov-09 22:33 
GeneralRe: Get Controls in htmlstring Pin
Imran Khan Pathan2-Nov-09 22:38
Imran Khan Pathan2-Nov-09 22:38 
AnswerRe: Get Controls in htmlstring Pin
Abhishek Sur2-Nov-09 21:24
professionalAbhishek Sur2-Nov-09 21:24 
Questionfile upload and repeater Pin
m@dhu2-Nov-09 19:47
m@dhu2-Nov-09 19:47 
AnswerRe: file upload and repeater Pin
Christian Graus2-Nov-09 19:50
protectorChristian Graus2-Nov-09 19:50 
GeneralRe: file upload and repeater Pin
m@dhu2-Nov-09 19:58
m@dhu2-Nov-09 19:58 
GeneralRe: file upload and repeater Pin
Christian Graus2-Nov-09 20:10
protectorChristian Graus2-Nov-09 20:10 
GeneralRe: file upload and repeater Pin
Christian Graus2-Nov-09 20:51
protectorChristian Graus2-Nov-09 20:51 
GeneralRe: file upload and repeater Pin
m@dhu2-Nov-09 22:07
m@dhu2-Nov-09 22:07 
GeneralRe: file upload and repeater Pin
Christian Graus2-Nov-09 22:20
protectorChristian Graus2-Nov-09 22:20 
GeneralRe: file upload and repeater Pin
m@dhu2-Nov-09 23:22
m@dhu2-Nov-09 23:22 
GeneralRe: file upload and repeater Pin
Christian Graus3-Nov-09 8:38
protectorChristian Graus3-Nov-09 8:38 

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.