Click here to Skip to main content
15,917,645 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Diff between IspostBack and IsCallback Pin
AdilSaud17-Feb-10 2:35
AdilSaud17-Feb-10 2:35 
Questionto pass memcod with query string in window.open() method Pin
Mayank Pathak, Chandigarh17-Feb-10 1:05
Mayank Pathak, Chandigarh17-Feb-10 1:05 
AnswerRe: to pass memcod with query string in window.open() method Pin
Pranay Rana17-Feb-10 1:34
professionalPranay Rana17-Feb-10 1:34 
AnswerRe: to pass memcod with query string in window.open() method Pin
Brij17-Feb-10 1:47
mentorBrij17-Feb-10 1:47 
GeneralRe: to pass memcod with query string in window.open() method Pin
Mayank Pathak, Chandigarh17-Feb-10 5:54
Mayank Pathak, Chandigarh17-Feb-10 5:54 
Questiondynamic create textbox and button Pin
test-0917-Feb-10 1:05
test-0917-Feb-10 1:05 
AnswerRe: dynamic create textbox and button Pin
Brij17-Feb-10 1:49
mentorBrij17-Feb-10 1:49 
GeneralRe: dynamic create textbox and button Pin
test-0917-Feb-10 2:16
test-0917-Feb-10 2:16 
this is what i tried im getting 4 buttons along with textboxes
but i want only single button
i want that row say for 'n' times but i could do it only once...
// called this in button click event

private void tablenew()
    {
        Table table1 = new Table();
        table1.ID = "tab";
        Page.Form.Controls.Add(table1);
        for (int i = 0; i < 1; i++)
        {
            TableRow row = new TableRow();
            for (int j = 0; j < 4; j++)
            {
                TableCell cell = new TableCell();
                Button lbl1 = new Button();
                lbl1.ID = "butn_" + i + "_" + j;
                TextBox lbl = new TextBox();
                lbl.ID = "TextBox_" + i + "_" + j;
                cell.Controls.Add(lbl);
                cell.Controls.Add(lbl1);
                lbl1.Text = "Button";
                lbl1.OnClientClick = "Btn_click";
                row.Cells.Add(cell);
            }
            table1.Rows.Add(row);
        }
    }

GeneralRe: dynamic create textbox and button Pin
Brij17-Feb-10 2:39
mentorBrij17-Feb-10 2:39 
GeneralRe: dynamic create textbox and button Pin
test-0917-Feb-10 17:50
test-0917-Feb-10 17:50 
QuestionHow to access the network shared foldder from the asp.net application without any security issues [modified] Pin
ramki.pindi16-Feb-10 23:18
ramki.pindi16-Feb-10 23:18 
AnswerRe: How to access the network shared foldder from the asp.net application without any security issues Pin
Pranay Rana17-Feb-10 1:39
professionalPranay Rana17-Feb-10 1:39 
QuestionObject reference not set to an instance of an object. Pin
BalasubramanianK16-Feb-10 22:56
BalasubramanianK16-Feb-10 22:56 
AnswerRe: Object reference not set to an instance of an object. Pin
Dinesh Mani16-Feb-10 23:13
Dinesh Mani16-Feb-10 23:13 
GeneralRe: Object reference not set to an instance of an object. Pin
BalasubramanianK16-Feb-10 23:26
BalasubramanianK16-Feb-10 23:26 
GeneralRe: Object reference not set to an instance of an object. Pin
Dinesh Mani16-Feb-10 23:42
Dinesh Mani16-Feb-10 23:42 
GeneralRe: Object reference not set to an instance of an object. Pin
BalasubramanianK17-Feb-10 0:48
BalasubramanianK17-Feb-10 0:48 
AnswerRe: Object reference not set to an instance of an object. Pin
Dinesh Mani17-Feb-10 0:52
Dinesh Mani17-Feb-10 0:52 
GeneralRe: Object reference not set to an instance of an object. Pin
BalasubramanianK17-Feb-10 1:07
BalasubramanianK17-Feb-10 1:07 
GeneralRe: Object reference not set to an instance of an object. Pin
Dinesh Mani17-Feb-10 1:10
Dinesh Mani17-Feb-10 1:10 
GeneralRe: Object reference not set to an instance of an object. Pin
BalasubramanianK17-Feb-10 1:16
BalasubramanianK17-Feb-10 1:16 
GeneralRe: Object reference not set to an instance of an object. Pin
Dinesh Mani17-Feb-10 1:20
Dinesh Mani17-Feb-10 1:20 
GeneralRe: Object reference not set to an instance of an object. Pin
BalasubramanianK17-Feb-10 1:23
BalasubramanianK17-Feb-10 1:23 
GeneralRe: Object reference not set to an instance of an object. Pin
Dinesh Mani17-Feb-10 1:35
Dinesh Mani17-Feb-10 1:35 
GeneralRe: Object reference not set to an instance of an object. Pin
BalasubramanianK17-Feb-10 2:39
BalasubramanianK17-Feb-10 2:39 

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.