Click here to Skip to main content
15,889,116 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Save As Dialog Box in Asp.Net Application Pin
codekhan111-Jun-11 20:39
codekhan111-Jun-11 20:39 
Questionhow i write a function or method which return table row with 32 cells any help. Pin
Rameez Raja23-Mar-09 2:11
Rameez Raja23-Mar-09 2:11 
AnswerRe: how i write a function or method which return table row with 32 cells any help. Pin
SeMartens23-Mar-09 2:55
SeMartens23-Mar-09 2:55 
AnswerRe: how i write a function or method which return table row with 32 cells any help. Pin
Abhishek Sur23-Mar-09 3:59
professionalAbhishek Sur23-Mar-09 3:59 
GeneralRe: how i write a function or method which return table row with 32 cells any help. Pin
Rameez Raja23-Mar-09 18:23
Rameez Raja23-Mar-09 18:23 
GeneralRe: how i write a function or method which return table row with 32 cells any help. Pin
Spunky Coder23-Mar-09 19:23
Spunky Coder23-Mar-09 19:23 
GeneralRe: how i write a function or method which return table row with 32 cells any help. Pin
Rameez Raja23-Mar-09 21:59
Rameez Raja23-Mar-09 21:59 
GeneralRe: how i write a function or method which return table row with 32 cells any help. Pin
Spunky Coder23-Mar-09 22:25
Spunky Coder23-Mar-09 22:25 
Ok...You need to place a Table control in your webpage...

Use the following in your .aspx page



Now in the code behind you can add rows to the table

Table1.Rows.Add(Row32Cell());   

private HtmlTableRow Row32Cell()
    {
        HtmlTableRow tr = new HtmlTableRow();
        for (int i = 0; i < 32; i++)
        {
            tr.Cells.Add(new HtmlTableCell());
        }
        return tr;
    } 


"Don't worry if it doesn't work right. If everything did, you'd be out of a job." (Mosher's Law of Software Engineering)

Questionhow do i change the background image of a web apge through profile Pin
souravghosh1823-Mar-09 1:00
souravghosh1823-Mar-09 1:00 
AnswerRe: how do i change the background image of a web apge through profile Pin
Abhishek Sur23-Mar-09 3:33
professionalAbhishek Sur23-Mar-09 3:33 
Question-Not a valid bookmark- issue Pin
V.23-Mar-09 0:54
professionalV.23-Mar-09 0:54 
AnswerRe: -Not a valid bookmark- issue Pin
Abhishek Sur23-Mar-09 3:31
professionalAbhishek Sur23-Mar-09 3:31 
GeneralRe: -Not a valid bookmark- issue Pin
V.23-Mar-09 3:38
professionalV.23-Mar-09 3:38 
GeneralRe: -Not a valid bookmark- issue Pin
Abhishek Sur23-Mar-09 3:58
professionalAbhishek Sur23-Mar-09 3:58 
QuestionProblem compiling resource file to library Pin
Zoltan Aszalos23-Mar-09 0:31
Zoltan Aszalos23-Mar-09 0:31 
AnswerRe: Problem compiling resource file to library Pin
V.23-Mar-09 0:56
professionalV.23-Mar-09 0:56 
QuestionHow to define SkinId property in the customcontrol Pin
Chameli22-Mar-09 23:27
Chameli22-Mar-09 23:27 
AnswerRe: How to define SkinId property in the customcontrol Pin
Spunky Coder22-Mar-09 23:54
Spunky Coder22-Mar-09 23:54 
QuestionASP.net Page Loading Pin
Ryno Engelbrecht22-Mar-09 22:35
Ryno Engelbrecht22-Mar-09 22:35 
AnswerRe: ASP.net Page Loading Pin
Christian Graus22-Mar-09 22:51
protectorChristian Graus22-Mar-09 22:51 
GeneralRe: ASP.net Page Loading Pin
Ryno Engelbrecht22-Mar-09 23:17
Ryno Engelbrecht22-Mar-09 23:17 
GeneralRe: ASP.net Page Loading Pin
N a v a n e e t h23-Mar-09 0:43
N a v a n e e t h23-Mar-09 0:43 
GeneralRe: ASP.net Page Loading Pin
Christian Graus23-Mar-09 18:18
protectorChristian Graus23-Mar-09 18:18 
GeneralRe: ASP.net Page Loading Pin
Ryno Engelbrecht23-Mar-09 21:22
Ryno Engelbrecht23-Mar-09 21:22 
GeneralRe: ASP.net Page Loading Pin
Ryno Engelbrecht23-Mar-09 21:36
Ryno Engelbrecht23-Mar-09 21:36 

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.