User Profile

Collapse

Profile Sidebar

Collapse
anuparvathy
anuparvathy
Last Activity: Dec 31 '07, 06:28 AM
Joined: Feb 21 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • anuparvathy
    replied to how to use fs command
    in .NET
    thank you so much rsdev...it worked!!! as you rightly pointed out it was not on press event, but was on release event that the code has to be written.thank you once again because the button now redirected me to the proper page.
    See more | Go to post

    Leave a comment:


  • anuparvathy
    started a topic how to make flash button work in.net
    in .NET

    how to make flash button work in.net

    hi

    To make a flash button work in asp.net do u need to write any code in the load event of the page?or is it just enough to write the code in the flash action script window?

    note: i do not want to pass any parameters.all that i want is i want the page to redirect once when the button is clicked.i have written code for my button in the action script window.all that i need to know is if there should be anything wrriten...
    See more | Go to post

  • anuparvathy
    replied to how to use fs command
    in .NET
    hi rsdev,

    thank u so much for your reply. as suggested by you i used "blank" instead of "post"as i dont want to pass any variable and i have given it in the following way:
    on (press)
    {
    getURL("Default .aspx","_blank" );

    }
    but when i run this page in .net it is not working.on the button click no new page is opening.is this the only code...
    See more | Go to post

    Leave a comment:


  • anuparvathy
    started a topic how to use fs command
    in .NET

    how to use fs command

    how to use fs command
    --------------------------------------------------------------------------------

    hi...
    i am having a flash template and i am working on asp.net. in my flash template i have buttons.now i want these buttons to direct to diff pages which i have crated in asp.net. so in my action script window i have wriiten this code for one of the buttons:
    on fs_command(pres s)
    {
    getURL("newpage .aspx","_self", "POST");...
    See more | Go to post

  • anuparvathy
    started a topic how to use fs command

    how to use fs command

    hi...
    i am having a flash template and i am working on asp.net. in my flash template i have buttons.now i want these buttons to direct to diff pages which i have crated in asp.net. so in my action script window i have wriiten this code for one of the buttons:
    on fs_command(pres s)
    {
    getURL("newpage .aspx","_self", "POST");
    }
    is tihs correct???and where and what should i write in...
    See more | Go to post

  • anuparvathy
    started a topic flash button in asp.net

    flash button in asp.net

    i am using a flash template for my website.i am working on asp.net 2.0 for creating my website. this flash template has got buttons.on the click of the button i want the user to be redirected to the respective pages.hence i have written the

    following code in the action script window of flash for my "products" button
    on (press)
    {
    getURL("product s.aspx","_self" ,"POST");...
    See more | Go to post

  • anuparvathy
    started a topic flash button not working in .net
    in .NET

    flash button not working in .net

    i am using a flash template for my website.i am working on asp.net 2.0 for creating my website. this flash template has got buttons.on the click of the button i want the user to be redirected to the respective pages.hence i have written the following code in the action script window of flash for my "products" button
    on (press)
    {
    getURL("product s.aspx","_self" ,"POST");
    }
    but...
    See more | Go to post

  • anuparvathy
    started a topic Calculating Run time of a program in vb.net
    in .NET

    Calculating Run time of a program in vb.net

    Hi,

    I am working on VB.Net. i want to calculate the run time of a program (i.e) after i click my button i want to know how much time it would take for the program to run.I learnt that there is a function called ticks which helps to calculate the run time of a program.But i do not know how to be using this.Can anyone tell me how to use this function.
    Thanking in advance.
    See more | Go to post

  • anuparvathy
    started a topic summing up values in each record

    summing up values in each record

    Hi!

    i have column1 which has some values in it. i want column2 to calculate the sum of the values in column1 in each cell as shown below:

    COLUMN1 COLUMN2

    10 10

    25 35

    32 67

    12 79

    ...
    See more | Go to post

  • anuparvathy
    started a topic Crystal report
    in .NET

    Crystal report

    Is editting possible in crystal report? can i edit a row in crystal report?
    See more | Go to post

  • does working in different browsers give different output?

    hi!

    I am doing a website in visual studio 2005.in my asp.net page i have got a grid view which takes the data from the database dynamically. In my source code i have set the wrap property of AlternatingRowS tyle,FooterStyl e,RowStyle,Edit RowStyle,Select edRowStyle,Empt yDataRowStyle to "false". this is because i dont want the data in my cells to go to the next line. when i run it in mozilla browser the grid view appears...
    See more | Go to post

  • anuparvathy
    started a topic urgent help required with this Wrapping
    in .NET

    urgent help required with this Wrapping

    hi

    i am doing a website in visual studio 2005.in my asp.net page i have got a grid view which takes the data from the database dynamically.i have given the following code:

    protected void GridView1_DataB ound(object sender, EventArgs e)
    {
    int i = ds.Tables[0].Rows.Count;
    int j = ds.Tables[0].Columns.Count;

    for (int k = 0; k < i; k++)
    {...
    See more | Go to post

  • anuparvathy
    started a topic can someone rectify the error!
    in .NET

    can someone rectify the error!

    Hi

    i wanted to resize my cell width of each cell in the grid view.i gave the following code:

    protected void GridView1_RowCr eated(object sender, GridViewRowEven tArgs e)
    {
    e.Row.Cells[i].Width = new Unit("25px");
    }

    But i got the error as "The name 'i' does not exist in the current context.

    what line of code should i include so that i dont get this error?Please...
    See more | Go to post

  • anuparvathy
    started a topic resizing cell width in a grid view
    in .NET

    resizing cell width in a grid view

    Hi all!

    I am creating a website using visual studio 2005.in my design view of asp.net page i have placed a grid view in the form.now i want to resize the width of each and every cell.how can i resize it?what code should i write for that?i am using c#. so can someone give me the code for that?

    Please help.Thanking in advance.
    See more | Go to post

  • anuparvathy
    replied to can someone help!
    in .NET
    i saw it thank you! but can you please convert this vb code to c# and give me.

    Protected Sub grdCuttings_Row DataBound(ByVal sender As Object, ByVal e
    As System.Web.UI.W ebControls.Grid ViewRowEventArg s) Handles
    grdCuttings.Row DataBound
    Dim item As GridViewRow = e.Row

    If (e.Row.RowType = DataControlRowT ype.DataRow) Then
    item.Cells(0).A ttributes.Add(" title",
    Me.grdCuttings. DataKeys(item.R owIndex).Item(" Headline").ToSt ring())...
    See more | Go to post

    Leave a comment:


  • anuparvathy
    started a topic can someone help!
    in .NET

    can someone help!

    hi

    i am creating a website in visual studio 2005 using c#.i have a grid view which takes the data fron my sql database. i need to insert a tool tip which will show the value for each cell in the grid view.can i do this without using javascript?if yes can someone give the code or method of doing it?

    please reply at the earliest.thanki ng in advance.
    See more | Go to post

  • anuparvathy
    started a topic tool tip in grid view
    in .NET

    tool tip in grid view

    hi!

    i am using a grid view in my application in visual studio 2005. i want to make use of a tool tip which displays the data in each and every cell. will this be possible? please help me out.
    Thanking in advance!
    See more | Go to post

  • anuparvathy
    started a topic resising cell width in grid view
    in .NET

    resising cell width in grid view

    Hi

    I am creating a website using visual studio 2005. In the design view of my asp.net page i have placed a grid view and then i have connected it to the database also. i have set the item style wrap property to false in my source code for every column.so in my output i get my data in a single line and the cell width adjusts according to it.but i want my cell width to be small and data to appear in a single line, meaning if i have a...
    See more | Go to post

  • anuparvathy
    replied to Creating Dynamic Forms
    in .NET
    I have got the line of code.it is:
    i = dt.Columns.Coun t;
    and you need to give a variable to bring that value....
    See more | Go to post

    Leave a comment:


  • anuparvathy
    replied to Creating Dynamic Forms
    in .NET
    I am using a datatable instead of a dataset.the name of my table is 'dt'. so can you give me the line of code for that?...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...