User Profile

Collapse

Profile Sidebar

Collapse
Nikky
Nikky
Last Activity: Jul 28 '07, 11:24 AM
Joined: Nov 24 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Nikky
    replied to Refreshing form1 through form2.
    in .NET
    thnX friends my problem is solved..
    See more | Go to post

    Leave a comment:


  • How can i call me java script function on formload.

    I am using this code

    object value = Request.QuerySt ring["val"].ToString();
    if (value == "1")
    {
    Form.Attributes .Add("onLoad()" ,"msg()" );
    }

    javascript;
    function msg()
    {
    alert(U r in my frame);
    }

    ...
    See more | Go to post

    Leave a comment:


  • Nikky
    replied to Refreshing form1 through form2.
    in .NET
    thanQ sachin but still i m unable to perform it plz help me

    1)home.aspx is my frame container page
    2)header.aspx is on top.
    3)left.aspx is on leftside.
    4)login.aspx is on rightside.

    I want to refresh left.aspx on click event of login button which is on login.aspx form.

    what is Iframe? How can i handle it?,Can i call it on home.aspx.
    In which aspx form i have to write this java...
    See more | Go to post

    Leave a comment:


  • Nikky
    started a topic Refreshing form1 through form2.
    in .NET

    Refreshing form1 through form2.

    I m working on C#.net

    I am using a frame where
    header.aspx is on the top of the frame.
    left.aspx is on the left side.
    login.aspx is on right side.

    I want to refresh left.aspx form through button _click which is situated on login.aspx form .
    See more | Go to post

  • thanX praveen2gupta

    Yaa this code is working but i want MSG() function conditionally.
    this code calls msg whenever form is loaded.but i m checking condition
    if (i==0)
    {
    onLoad()
    }
    else
    {
    another condition
    }
    how can i call this function throught C#.net without using any click or any other event....
    See more | Go to post

    Leave a comment:


  • Nikky
    started a topic Calling javascript function on form load event

    Calling javascript function on form load event

    hello i am working on C#.net
    i have a function on javascript

    <script language="javas cript">
    function msg()
    {
    alert("my form")
    }
    </script>

    In Web form i want to call this function .It is working with a button

    Button1.Attribu tes.Add("onClic k()","msg()");
    but i want to perform it with forms load envent...
    See more | Go to post

  • Nikky
    replied to dynamic checkbox position on PlaceHolder
    in .NET
    thankx but still can't do this think.i m new in this plz help me how can i fix the position of dynamic control in place holder....
    See more | Go to post

    Leave a comment:


  • Nikky
    started a topic dynamic checkbox position on PlaceHolder
    in .NET

    dynamic checkbox position on PlaceHolder

    I m using C#.net
    i m using a placeholder which contains dynamic table and dynamic checkbox
    .i want to position check box after each row.but i want to place it after table.not within the table.

    how can i fix the position of check box
    See more | Go to post

  • Nikky
    replied to dynamic check box
    in .NET
    [how can i find dat onclick event of that dynamic checkBox
    See more | Go to post

    Leave a comment:


  • Nikky
    started a topic dynamic check box
    in .NET

    dynamic check box

    i m using C#.net
    i hav created dynamic check boxes and given its id (1,2,3..) which are primary key of my table.i want to perform deletion from only one click button after selecting check boxes.

    Like email deletion manner.i want to check more than one boxes and want to delete from button.
    plz help me asps.
    See more | Go to post

  • Nikky
    started a topic database convertion (xl to sql server)
    in .NET

    database convertion (xl to sql server)

    can any one tell me how can i convert xl sheet to sql server tables through c#.net coding.
    See more | Go to post

  • Nikky
    started a topic key hit in C#.net
    in .NET

    key hit in C#.net

    I want to use a TextBox that accept only capital letter value.either caps lock is on or off.
    is there any key hit kind of value that return asscii value of pressed key.
    See more | Go to post

  • Nikky
    started a topic i want pop up window
    in .NET

    i want pop up window

    i m using c#.net
    On a aspx form i want to open a aspx page as a small window by which i can do some database updation work.I want it on the click of a button.
    can i use aspx file or i hav to use html or other kind of pages.
    See more | Go to post

  • Nikky
    replied to DropDownList Problem
    in .NET
    ThnkX plater this code is working but now there is another problem i m using it in a loop each n every time concatinated string is changed .Now Dropdownlist showing only last concatinated value....
    See more | Go to post

    Leave a comment:


  • Nikky
    replied to DropDownList Problem
    in .NET
    No its not working.It will work only with the schm_name bcoz it is column name.group and my name are the another string which i want to show at run time after concate with the schm_name.

    there is a error in "DataBind() " bcoze "schm_name+grou p+my name" are dynamic dropdownlist is unable to bind it...
    See more | Go to post

    Leave a comment:


  • Nikky
    replied to call JavaScript function from C#
    in .NET
    try this code
    At the
    <html>
    <head></head>
    <script language='javas cript'>
    function Hello()
    {
    alert("Hello Friends");
    }

    </script>
    </html>

    Call this function at Page_Load()
    {
    Button1.Attribu tes.Add("onClic k","Hello");
    }
    See more | Go to post

    Leave a comment:


  • Nikky
    replied to Populate data in dropdownlist
    in .NET
    make a record set rd;

    write a query for retriving desired result.
    rd="sql query";
    DropDownList1.D ataSource=rd;
    DropDownList1.D ataTextField="t able column name";
    DropDownList1.D ataBind();
    See more | Go to post

    Leave a comment:


  • Nikky
    started a topic DropDownList Problem
    in .NET

    DropDownList Problem

    I m using C#.net
    i m retriving values from database.
    DropDownList1.D ataSource = objdd.result;
    DropDownList1.D ataTextField = "schm_name" ;
    DropDownList1.D ataValueField = "schm_code" ;
    DropDownList1.D ataBind();

    Now i want to concatinate more string at datatextfied at run time.

    like DropDownList1.D ataTextField...
    See more | Go to post

  • Nikky
    started a topic Page_Load problem
    in .NET

    Page_Load problem

    I m working on C#.net.When i m running my application on browser it gives me error on web.config file"Session is expired"
    i have already given "session.timeou t " it is nearly 2 hours.

    But when internet is slow it gives this error on loading time .i want to know how to increase the page loading time.

    i m using sqlserver at back end
    See more | Go to post

  • Nikky
    started a topic Exe file
    in .NET

    Exe file

    Can i make Exe file or set up of my C#.net application .
    See more | Go to post
No activity results to display
Show More
Working...