Click here to Skip to main content
15,893,622 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Regarding installation of Visual Studio Webdeveloper Pin
Ivan200929-Apr-09 19:30
Ivan200929-Apr-09 19:30 
AnswerRe: Regarding installation of Visual Studio Webdeveloper Pin
SayreCC29-Apr-09 19:17
SayreCC29-Apr-09 19:17 
Questiongetting "Microsoft JScript runtime error: Object expected" Pin
Wes Jones29-Apr-09 14:07
Wes Jones29-Apr-09 14:07 
AnswerRe: getting "Microsoft JScript runtime error: Object expected" Pin
SayreCC29-Apr-09 15:19
SayreCC29-Apr-09 15:19 
GeneralRe: getting "Microsoft JScript runtime error: Object expected" Pin
Wes Jones29-Apr-09 16:56
Wes Jones29-Apr-09 16:56 
AnswerRe: getting "Microsoft JScript runtime error: Object expected" Pin
dotnetmember29-Apr-09 17:38
dotnetmember29-Apr-09 17:38 
GeneralRe: getting "Microsoft JScript runtime error: Object expected" Pin
Wes Jones29-Apr-09 17:49
Wes Jones29-Apr-09 17:49 
Questionadding repeater at runtime, Pin
mark_me29-Apr-09 12:48
mark_me29-Apr-09 12:48 
I am trying to add a repeater to a view (in multiview control) at runtime...
i coded as below
Repeater repeater = new Repeater();
//repeater control requires template
TemplateBuilder template = new TemplateBuilder();
//for proper alignment , i want to insert a table with cells
HtmlTable table = new HtmlTable();
HtmlTableRow row = new HtmlTableRow();
HtmlTableCell cell = new HtmlTableCell();
Label l = new Label();
l.Text = "Model";
cell.Controls.Add(l);
HtmlTableCell cell2 = new HtmlTableCell();
TextBox t = new TextBox();
t.Text = "ModelNumber";
cell2.Controls.Add(t);

row.Cells.Add(cell);
row.Cells.Add(cell2);

table.Rows.Add(row);
ControlBuilder c=new ControlBuilder();

template.InstantiateIn(table);

repeater.ItemTemplate = template;

viewModels.Controls.Add(repeater);
multiViewResult.SetActiveView(viewModels);

i have added this code to page_load,
The text that i am assigning is dummy here but i would be assingin string to it.. i did this to try if it works but it turns out that it works fine... it doesn't throw exceptions but still no data is displayed... can anyone help me with this problem

thanx
Questionpageload/onloadcomplete Pin
mark_me29-Apr-09 12:14
mark_me29-Apr-09 12:14 
AnswerRe: pageload/onloadcomplete Pin
Christian Graus29-Apr-09 15:08
protectorChristian Graus29-Apr-09 15:08 
GeneralRe: pageload/onloadcomplete Pin
mark_me29-Apr-09 15:33
mark_me29-Apr-09 15:33 
GeneralRe: pageload/onloadcomplete Pin
Christian Graus29-Apr-09 16:23
protectorChristian Graus29-Apr-09 16:23 
QuestionAsp.net testing server problem Pin
ahawari0929-Apr-09 11:10
ahawari0929-Apr-09 11:10 
AnswerRe: Asp.net testing server problem Pin
Ivan200929-Apr-09 15:36
Ivan200929-Apr-09 15:36 
GeneralRe: Asp.net testing server problem Pin
ahawari0929-Apr-09 18:39
ahawari0929-Apr-09 18:39 
GeneralRe: Asp.net testing server problem Pin
Ivan200930-Apr-09 10:17
Ivan200930-Apr-09 10:17 
QuestionChange datatype of column in dataset in designtime Pin
AlexeiXX329-Apr-09 10:35
AlexeiXX329-Apr-09 10:35 
QuestionThe request failed with HTTP status 400: Bad Request Pin
Sandeep Akhare29-Apr-09 9:25
Sandeep Akhare29-Apr-09 9:25 
AnswerRe: The request failed with HTTP status 400: Bad Request Pin
Christian Graus29-Apr-09 10:14
protectorChristian Graus29-Apr-09 10:14 
GeneralRe: The request failed with HTTP status 400: Bad Request Pin
Sandeep Akhare29-Apr-09 10:20
Sandeep Akhare29-Apr-09 10:20 
GeneralRe: The request failed with HTTP status 400: Bad Request Pin
Christian Graus29-Apr-09 10:23
protectorChristian Graus29-Apr-09 10:23 
GeneralRe: The request failed with HTTP status 400: Bad Request Pin
Sandeep Akhare29-Apr-09 10:31
Sandeep Akhare29-Apr-09 10:31 
GeneralRe: The request failed with HTTP status 400: Bad Request Pin
Christian Graus29-Apr-09 10:36
protectorChristian Graus29-Apr-09 10:36 
GeneralRe: The request failed with HTTP status 400: Bad Request Pin
Sandeep Akhare29-Apr-09 10:55
Sandeep Akhare29-Apr-09 10:55 
QuestionAuthorization in web.config is giving me heartburn Pin
gantww29-Apr-09 9:05
gantww29-Apr-09 9:05 

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.