Click here to Skip to main content
15,885,216 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: A Query Pin
Blue_Boy5-Sep-09 5:28
Blue_Boy5-Sep-09 5:28 
Questionbind data from textboxes to griview Pin
Flavia A5-Sep-09 0:31
Flavia A5-Sep-09 0:31 
AnswerRe: bind data from textboxes to griview Pin
Abhijit Jana5-Sep-09 0:34
professionalAbhijit Jana5-Sep-09 0:34 
GeneralRe: bind data from textboxes to griview Pin
Flavia A5-Sep-09 1:58
Flavia A5-Sep-09 1:58 
GeneralRe: bind data from textboxes to griview Pin
deepseeindeepsy5-Sep-09 2:43
deepseeindeepsy5-Sep-09 2:43 
QuestionRepeater in update panel Pin
Shahdat Hosain5-Sep-09 0:30
Shahdat Hosain5-Sep-09 0:30 
AnswerRe: Repeater in update panel Pin
Abhijit Jana5-Sep-09 0:37
professionalAbhijit Jana5-Sep-09 0:37 
GeneralRe: Repeater in update panel Pin
Shahdat Hosain5-Sep-09 0:58
Shahdat Hosain5-Sep-09 0:58 
I seems as you. Plz verify my c# code


protected void Page_Load(object sender, EventArgs e)
{       ShowAlerts(_alertService.GetStatusAlertsByAccountID(_userSession.CurrentUser.AccountID));          
}

public void ShowAlerts(List<Alert> Statusalerts)
        {
            repStatus.DataSource = Statusalerts;
            repStatus.DataBind();
            if (repStatus.Items.Count == 0)
                lblStatusMessage.Text = "You don't have any status alerts yet!";
           
}

        protected void btnShare_Click(object sender, ImageClickEventArgs e)
        {
            
            StatusUpdate su = new StatusUpdate(); // Statusupdate table
            su.Status = msgText;
            _alertService.AddStatusUpdateAlert(su);
             }                     
            txtStatusUpdate.Text = "";            
        }


plz help me.

shahdat

AnswerRe: Repeater in update panel Pin
Abhijit Jana5-Sep-09 1:25
professionalAbhijit Jana5-Sep-09 1:25 
GeneralRe: Repeater in update panel Pin
Shahdat Hosain5-Sep-09 2:22
Shahdat Hosain5-Sep-09 2:22 
GeneralRe: Repeater in update panel Pin
Abhijit Jana5-Sep-09 2:26
professionalAbhijit Jana5-Sep-09 2:26 
QuestionCan we have a masked textbox in asp.net website Pin
Flavia A5-Sep-09 0:24
Flavia A5-Sep-09 0:24 
AnswerRe: Can we have a masked textbox in asp.net website Pin
CrazyCoder265-Sep-09 0:26
CrazyCoder265-Sep-09 0:26 
AnswerRe: Can we have a masked textbox in asp.net website Pin
Abhijit Jana5-Sep-09 0:28
professionalAbhijit Jana5-Sep-09 0:28 
Questionchek name is this exist or not in database Pin
rummer4-Sep-09 23:32
rummer4-Sep-09 23:32 
AnswerRe: chek name is this exist or not in database Pin
Blue_Boy4-Sep-09 23:37
Blue_Boy4-Sep-09 23:37 
AnswerRe: chek name is this exist or not in database Pin
Abhijit Jana4-Sep-09 23:39
professionalAbhijit Jana4-Sep-09 23:39 
Questioncheck name allready exist or not Pin
rummer4-Sep-09 23:02
rummer4-Sep-09 23:02 
AnswerRe: check name allready exist or not Pin
Abhijit Jana4-Sep-09 23:07
professionalAbhijit Jana4-Sep-09 23:07 
AnswerRe: check name allready exist or not Pin
Manas Bhardwaj5-Sep-09 0:39
professionalManas Bhardwaj5-Sep-09 0:39 
GeneralRe: check name allready exist or not Pin
Abhijit Jana5-Sep-09 0:52
professionalAbhijit Jana5-Sep-09 0:52 
GeneralRe: check name allready exist or not Pin
Manas Bhardwaj5-Sep-09 1:12
professionalManas Bhardwaj5-Sep-09 1:12 
GeneralRe: check name allready exist or not Pin
Abhijit Jana5-Sep-09 1:28
professionalAbhijit Jana5-Sep-09 1:28 
GeneralRe: check name allready exist or not Pin
Manas Bhardwaj5-Sep-09 1:45
professionalManas Bhardwaj5-Sep-09 1:45 
AnswerRe: check name allready exist or not Pin
Brij5-Sep-09 1:03
mentorBrij5-Sep-09 1:03 

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.