User Profile

Collapse

Profile Sidebar

Collapse
mohitkatariya
mohitkatariya
Last Activity: Apr 13 '08, 06:42 AM
Joined: Apr 30 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mohitkatariya
    started a topic ATLAS With FileUpload Control
    in .NET

    ATLAS With FileUpload Control

    hi all
    I am getting problem while using fileupload control with atlas scripts. Can any one tell me how to use fileupload control with atlas.
    Thanks
    See more | Go to post

  • mohitkatariya
    replied to Problem related to insert/update record
    in .NET
    I think you have seprate ur function in two parts one is for desiging table n other is for binding. desining part is called on page load so that events get registered, while binding function will be called on every button click.
    May be it will work. Hope for best......
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    replied to Problem related to insert/update record
    in .NET
    hi navneet i read ur code.
    as i said u r calling ur function "cur_proj_assig ned " without ispostback so ur values are not saved.
    if u put ur function in postback it will run only one time and u hv to call it after updationation agn and it will not put extra overhead on ur programe. ur function is called with pageload everytime now but after postback it will be called only first time in pageload, and agn whn u called it after...
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    replied to Problem related to insert/update record
    in .NET
    Hi Navneet
    You told that you have not checked 'ispostback' property. I think your data might be updated because when you click update button first pageload event will be fired where u have wriiten your gridbind code, So when page load fires again it will take data from original data and the chngd values will be lost. Check your data in query analyzer that it is updatied or not.
    seq of event is Page_load->Button_Click
    you...
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    replied to datagrid column
    in .NET
    Let g is GridView
    int32 j;
    for (Int32 i = 0; i < g.Rows; i++)
    {
    //cell 0 is first cell of the grid
    j = g.Rows[i].Cells[0].Text;

    }...
    See more | Go to post

    Leave a comment:


  • You can use TreeView control or nested control for this type of representation of data....
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    replied to Problem related to insert/update record
    in .NET
    Hi Navneet
    You might hv written your code in
    if(!Page.IsPost Back)
    {
    //your code
    }
    So according to page's life cycle this code will not run again untill postback is not equal to false again. So after updating ur database u have to rebind ur table.
    I think thats the only way......
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    replied to Problem related to insert/update record
    in .NET
    After Updation you must have to fetch data again from the table and show it in table....
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    replied to innerHTMLs's value not saved
    in .NET
    I mean Label's text is updating successfully in datalist and it is showing proper result in datalist, as i am using javascript to update these labels text by using innerhtml property, so i want these values to store in database but if i click button(server control) to save the values of that labels, they are lost and datalist starts showing previous values, that may be because i had updated labels value with innerHTML??...
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    replied to innerHTMLs's value not saved
    in .NET
    I am Using Nested datalist but the labels which I am updating using javascript are in root datalist. Values are successfully updating but if I click on server control(Button) label restore its previous values but i want its updated value....
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    started a topic innerHTMLs's value not saved
    in .NET

    innerHTMLs's value not saved

    i am using labels for storing subtotals in datalist control which are successfully calculated and showed in labels using javascript's innerHTML property. But When i press button(server control) for calculating Grand Total then the values of those labels are not retrived and it started showing previous values of label control.
    Can anyone tell me what i can do to retrive label value, i think i am using innerhtml property to change label's...
    See more | Go to post

  • mohitkatariya
    started a topic Advance Web User Control
    in .NET

    Advance Web User Control

    i have having problem regarding web user control
    i want to make a property from which user can select the mode of the control,
    like the type of characters textbox can accept as 'only char' or 'only number' etc, these value should be shown in dropdownlist in property box
    how can i do this
    Plz help me regarding this
    Thanx
    See more | Go to post

  • mohitkatariya
    started a topic instance not initializing

    instance not initializing

    hi all,
    i am using sql server 2005 for reporting, my reports are not deploying because my server is not initializing, can any one help me to initialize the server.
    See more | Go to post

  • mohitkatariya
    replied to Error Reporting service
    now its working properly, i have executed aspnet_regsql -ga aspnet commond on command prompt. But now while deploying i m getting another problem: "An internal error occurred on the report server. See the error log for more details."
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    started a topic Error Reporting service

    Error Reporting service

    hi
    i am using SQL Server 2005 reporting services, i am getting an error message while deploying .rdl file error is:" Connection could not be established to remote server http://localhost/ReportServer"
    Additional information is :
    "client found response content type of text/html; charset=utf-8 but expected text/XML"
    See more | Go to post

  • mohitkatariya
    started a topic Web user control
    in .NET

    Web user control

    i have having problem regarding web user control
    i want to make a property from which user can select the mode of the control
    like the type of char. textbox can accept as 'only char' or 'only number' etc
    how can i do this
    Plz help me regarding this
    Thanx
    See more | Go to post

  • mohitkatariya
    replied to Convert string to integer
    in .NET
    Do no use quotes in this line
    s3 = Convert.ToInt32 ("s2");

    use:
    s3 = Convert.ToInt32 (s2);

    and check ur variable does not contain any alphab. or any other symbols, only numeric values can be converted.
    See more | Go to post

    Leave a comment:


  • it actually depends on the situtation on which u r working sometime cookies are mush better option then session and some time session is better.
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    replied to Prblm Web Control
    in .NET
    No I have used Class in this problem how can i use class to solve this prblm, if u have any suggestions plz write
    Thanks...
    See more | Go to post

    Leave a comment:


  • mohitkatariya
    started a topic Prblm Web Control
    in .NET

    Prblm Web Control

    i have having problem regarding web user control
    i want to make a property from which user can select the mode of the control
    like the type of char. textbox can accept as 'only char' or 'only number' etc
    how can i do this
    Plz help me regarding this
    Thanx
    See more | Go to post
No activity results to display
Show More
Working...