Click here to Skip to main content
15,891,864 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Search data from the database Pin
danico4912-Aug-09 14:25
danico4912-Aug-09 14:25 
Questionidentify list box scroll event in asp.net Pin
anish27patel5-Jul-09 19:13
anish27patel5-Jul-09 19:13 
AnswerRe: identify list box scroll event in asp.net Pin
Abhijit Jana5-Jul-09 19:27
professionalAbhijit Jana5-Jul-09 19:27 
GeneralRe: identify list box scroll event in asp.net Pin
anish27patel5-Jul-09 19:36
anish27patel5-Jul-09 19:36 
QuestionMenu Tree Problem Pin
ais075-Jul-09 19:12
ais075-Jul-09 19:12 
QuestionHow can i bind data from db to day pilot calendar Pin
janani135-Jul-09 18:35
janani135-Jul-09 18:35 
AnswerRe: How can i bind data from db to day pilot calendar Pin
r a m e s h5-Jul-09 19:02
r a m e s h5-Jul-09 19:02 
GeneralRe: How can i bind data from db to day pilot calendar Pin
janani135-Jul-09 19:28
janani135-Jul-09 19:28 
I try that be cant bind the data and get pbm as there is no source available when the compiler moves to Databind(); my code is



protected void Page_Load(object sender, EventArgs e)
    {
        if (OliveSessions.UserId == null)
        {
            Response.Redirect("http://Localhost/OliveTreeNetwork/Login.aspx");
        }
        if (!IsPostBack)
        {
            Bind();
        }
        dpcEventslist.StartDate = DateTime.Parse("07/07/2009");
        
    }
    private void Bind()
    {
        DataSet ds1 = new DataSet();
        DataSet ds2 = new DataSet();
        if (OliveSessions.UserId != null)
        {
            ds1 = dal.Select_EventMembers(OliveSessions.UserId);
            if (ds1.Tables[0].Rows.Count > 0)
            {
                ds2 = dal.Select_Events(ds1.Tables[0].Rows[0]["role_id"].ToString());
                //string eventstart=  ds2.Tables[0].Rows[0]["eventstart"].ToString();
                //dpcEventslist.DataTextField = eventstart;



                //   dpcEventslist.DataValueField = id;
                //   dpcEventslist.DataStartField = "07/07/2009 10:00";
                //   dpcEventslist.DataEndField = "07/07/2009 11:00";

                dpcEventslist.DataSource = ds2.Tables[0];
                dpcEventslist.DataBind();
            }
        }
    }

Questionchange internet explorer security setting programmatically in C# Pin
naveen attri5-Jul-09 18:19
naveen attri5-Jul-09 18:19 
AnswerRe: change internet explorer security setting programmatically in C# Pin
SeMartens5-Jul-09 20:24
SeMartens5-Jul-09 20:24 
Generalprint preview page [modified] Pin
_naj5-Jul-09 14:04
_naj5-Jul-09 14:04 
GeneralRe: print preview page Pin
Christian Graus5-Jul-09 14:12
protectorChristian Graus5-Jul-09 14:12 
RantRe: print preview page [modified] Pin
_naj6-Jul-09 3:01
_naj6-Jul-09 3:01 
QuestionAdd ListItem to Custom DropDownList Pin
mehran.asg5-Jul-09 5:52
mehran.asg5-Jul-09 5:52 
AnswerRe: Add ListItem to Custom DropDownList Pin
Blue_Boy5-Jul-09 7:38
Blue_Boy5-Jul-09 7:38 
GeneralRe: Add ListItem to Custom DropDownList Pin
mehran.asg6-Jul-09 8:36
mehran.asg6-Jul-09 8:36 
QuestionAjax PasswordStrength Control Pin
kKamel5-Jul-09 3:23
kKamel5-Jul-09 3:23 
AnswerRe: Ajax PasswordStrength Control Pin
Baran M5-Jul-09 19:53
Baran M5-Jul-09 19:53 
QuestionProblem of publishing website Pin
nazimghori5-Jul-09 2:38
nazimghori5-Jul-09 2:38 
AnswerRe: Problem of publishing website Pin
Abhijit Jana5-Jul-09 2:58
professionalAbhijit Jana5-Jul-09 2:58 
GeneralRe: Problem of publishing website Pin
nazimghori5-Jul-09 3:15
nazimghori5-Jul-09 3:15 
GeneralRe: Problem of publishing website Pin
Abhijit Jana5-Jul-09 3:27
professionalAbhijit Jana5-Jul-09 3:27 
QuestionRe: Problem of publishing website Pin
nazimghori5-Jul-09 6:03
nazimghori5-Jul-09 6:03 
AnswerRe: Problem of publishing website Pin
Abhijit Jana5-Jul-09 7:09
professionalAbhijit Jana5-Jul-09 7:09 
QuestionRe: Problem of publishing website Pin
nazimghori5-Jul-09 8:47
nazimghori5-Jul-09 8:47 

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.