Search

You searched for the word(s): userid:823228

Matching Posts

  • Re: Load Control

    First ou check in your master page,in Html source Your content place holder is inside form tag. If you are placing controls(TextBox1) outside youe form tag you will get this error so check it in Html Source. **********MARK AS ANSWER IF IT HELPS*************
    Posted to Web Forms (Forum) by sarath_cs_8184 on 7/13/2009
  • Re: Help Urgent!!!!!!!

    Remove return insted of this OnClientClick="return Check(); OnClientClick="Check(); Any problem tell me *****************MARK AS ANSWER IF IT HELPS*************
    Posted to Web Forms (Forum) by sarath_cs_8184 on 7/7/2009
  • Re: Help Urgent!!!!!!!

    No problem in doing two events,But your problem is onMouseDown Event You cant use this event or any mouse event because it fires only the mouse event you specified and it stops, So if you use onClientClick event it works Fine ****MARK AS ANSWER IF IT HELPS****
    Posted to Web Forms (Forum) by sarath_cs_8184 on 7/6/2009
  • Re: please help me out

    Check out this code its working Fine i think this is what you want string result = "match" ; string [] datas = new string [] { "no" , "no match" , "no match for" , "no entries" , }; bool ss; int flag = 0; for ( int i = 0; i < datas.Length; i++) { ss = datas[i].Contains(result); if (ss == true ) flag++; } if (flag==4) Response.Write( "AVAILABLE" ); else Response.Write( "UNAVAILABLE" ); MARK AS ANSWER IF IT HELPS
    Posted to Web Forms (Forum) by sarath_cs_8184 on 7/3/2009
  • Re: adding DropDownList items from string[] array

    Not necessary for loop Just bind as said Here: String colorstring = dt.Rows[0][ "colors" ].ToString(); string [] coloritems = colorstring.Split( ',' ); DropDownList1.DataSource = coloritems; DropDownList1.DataBind() MARK AS ANSWER IF IT HELPS
    Posted to Web Forms (Forum) by sarath_cs_8184 on 7/2/2009
  • Re: adding DropDownList items from string[] array

    I found the Problem, error because of findcontrol is not finding the control I Tryed DropDownList ddl = ( DropDownList )FormView1.FindControl( "DropDownList1" ); ddl.DataSource = str; ddl.DataBind(); I am getting null in ddl I dont know why its not working i will try again
    Posted to Web Forms (Forum) by sarath_cs_8184 on 7/2/2009
  • Re: adding DropDownList items from string[] array

    hi, I got it you want to bind form view with some data (from database) then only the code will work then run the same code String colorstring = dt.Rows[0][ "colors" ].ToString(); string [] coloritems = colorstring.Split( ',' ); (( DropDownList )FormView1.FindControl( "DropDownListColors" )).DataSource = coloritems; (( DropDownList )FormView1.FindControl( "DropDownListColors" )).DataBind(); are you clear if any problem tell me again MARK AS ANSWER IF IT HELPS
    Posted to Web Forms (Forum) by sarath_cs_8184 on 7/2/2009
  • Re: cannot see table in designer.

    Just in design page press Ctrl+Q or go to View->Visible Borders DONT FORGET TO MARK AS ANSWER IF IT HELPS
    Posted to Visual Studio 2005 (Forum) by sarath_cs_8184 on 7/1/2009
  • Re: Need Solution For query...

    sorry that is not sum(code) its sum(amount) any way if i give sum(code) or sum(amount) all the result is null for that 'sum'
    Posted to MySQL (Forum) by sarath_cs_8184 on 3/25/2009
  • Need Solution For query...

    Need query like, select sum(code),code,name,date from customer where code between 1 to 10 and date between '2008/01/01' and '2009/01/01' sum(code) should come based on date<'2008/01/01' and code=(1or2or3...or10) result like sum(code) code name date 100 1 ss '2008/01/01' 1 ss '2008/01/02' 1 ss '2008/01/03' . . . 1 ss '2009/01/01' 250 2 rr '2008/01/01' 2 rr '2008/01/02' 2 rr '2008/01/03' . . . 2 rr '2009/01/01'
    Posted to MySQL (Forum) by sarath_cs_8184 on 3/23/2009
Page 1 of 4 (39 items) 1 2 3 4 Next >