User Profile

Collapse

Profile Sidebar

Collapse
parshupooja
parshupooja
Last Activity: Sep 11 '09, 07:24 PM
Joined: Jun 13 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • parshupooja
    started a topic Save Web Page as PDF

    Save Web Page as PDF

    Hi All,

    I have ASP.NET form filled by Customer, as soon as they hit Save , I want to save it as PDF file.

    any suggestions how to achieve?

    Thanks!
    See more | Go to post

  • parshupooja
    started a topic dynamic validation does not work
    in .NET

    dynamic validation does not work

    hey all,

    I have DataTable binded to Gridview . This Datatable contains Data from Database. Before binding it to Gridview I am adding extra line with few controls dynamically in it such as text box below. When page loads I see extra Text box on the bottom of gridview but Validation is not working. Any Idea?

    I am calling this Function on each page load.

    Code:
    Private Sub AddControls()
    Dim con As SqlConnection
    ...
    See more | Go to post

  • parshupooja
    started a topic Unable to find control in Gridview
    in .NET

    Unable to find control in Gridview

    Hey All,
    I have where I want to do some manipulations and show in other column but unable to find their values in RowDatabound event even though I have two records in gridview
    Code:
    <asp:GridView ID="GridView1" runat="server" ShowFooter="True" AutoGenerateColumns="false" Width="700px">
            <Columns>
                         <asp:TemplateField HeaderText="Qty">
    ...
    See more | Go to post

  • parshupooja
    replied to Classic ASP Calener
    thanks!!

    thanks for reply. Finally I came to conclusion to recode whole project into asp.net 2.0.....

    Thanks Again!!!
    See more | Go to post

    Leave a comment:


  • parshupooja
    started a topic Classic ASP Calener

    Classic ASP Calener

    Hey All,

    I am doing Classsic ASP after 10 yrs so....finding it very hard & outdated. So need some help.....

    I am looking for Classic ASP Calender & later on i want to bind some data to it as well? Any Idea where should I look or wat shd I use?

    Also what should I use to be able to debug classic asp, tried configuring in VS 2008 but it crashes completely. Micrsoft says its a bug which will be fixed...
    See more | Go to post

  • parshupooja
    started a topic Filter Datasource
    in .NET

    Filter Datasource

    Hi All,

    I have datasource returning 3 columns and various row: OperationTypeID ,OperationType and OperationCode .
    This datasource is binded to Dropdownlist like this:

    lstOperationTyp e.DataSource = ldatasource
    lstOperationTyp e.DataValueFiel d = "OperationTypeI D"
    lstOperationTyp e.DataTextField = "OperationT ype"
    ...
    See more | Go to post

  • parshupooja
    started a topic Mcts 70-536
    in .NET

    Mcts 70-536

    Hey All,

    I am planning to Take MCTS -70-536 in few months. does any one has taken before? Any study Material? Does anyone recommends to take it or it will be obsolete in few month since 3.5 is already in market? Also does this ceritificatione expires in few years or so?

    Thanks!
    See more | Go to post

  • parshupooja
    replied to Select Maximum Value from Dropdownlist
    in .NET
    thankQ i am half sleep.

    ddpaycycle.Item s(X).Value...
    See more | Go to post

    Leave a comment:


  • parshupooja
    replied to Select Maximum Value from Dropdownlist
    in .NET
    Thankx. Now how should I get value of Highest Index? Since dropdown list is dynamic. number of item may change anytime. suppose i want to Find out value of item where index is 5.

    Thanks!...
    See more | Go to post

    Leave a comment:


  • parshupooja
    replied to Select Maximum Value from Dropdownlist
    in .NET
    wat is syntax of selecting higest index?...
    See more | Go to post

    Leave a comment:


  • parshupooja
    started a topic Select Maximum Value from Dropdownlist
    in .NET

    Select Maximum Value from Dropdownlist

    Hey All,

    I know its silly question but help me here.
    I have dropdown which is getting populated dynamic from Database with number like 1,2 ,3, 4, 6,12 etc.

    By Default I want maximum number to be selected once dropdown is populated.

    Thanks!
    See more | Go to post

  • GridView1.DataS ource = Sales.getSales( txtFrom.Text, txtTo.Text)
    GridView1.DataB ind()

    I have method getSales(0 in Sales class...
    See more | Go to post
    Last edited by parshupooja; May 9 '08, 06:36 PM. Reason: sa

    Leave a comment:


  • I have been suggested by our DBA not to anything on Sql Server beyond this , So this is farthest point I can go. I have surely to do something on page behind.

    I thought I would read each row in databound of Gridview and then do Calculation but I don't understand How to do that.
    Any suggestion?...
    See more | Go to post

    Leave a comment:


  • parshupooja
    started a topic sum up values in Gridview based on condition
    in .NET

    sum up values in Gridview based on condition

    Hey All,

    I have stored procedure which return results like this:

    Sale person -----------qty-------Status
    Jack----------------------100-------1
    Jack----------------------200-------0
    Mike----------------------50-------0
    Mike----------------------55-------1


    There are only 2 records per sale person.I want to display these records in gridview as:
    Qty should be sum...
    See more | Go to post

  • parshupooja
    started a topic Auto Complete Textbox
    in .NET

    Auto Complete Textbox

    Hey All,

    I am working on vb.Net 2.0 Desktop application. Can any one suggest me how to do Autocomplete TextBox? I have 1 dropdown and one textbox
    dropdown has criteria such as Last Name, First Name, id etc. When user selects say criteria Last Name and starts typing in Textbox, I want autocomplete on Textbox.




    Thanks!
    See more | Go to post

  • parshupooja
    started a topic Icons for various things in application
    in .NET

    Icons for various things in application

    Hey all,

    Can some one refer me where to get Icons which are used for general purposes in Applications such as Add, Update, Delete, Task, View, Tools Icons etc.

    Thanks
    See more | Go to post

  • parshupooja
    started a topic Progress Bar
    in .NET

    Progress Bar

    Hey All,


    I am working on Vb.Net windows application. I have login Form and where user enters there credentials and then I process something for few Seconds, meanwhile I am displaying simple form named as Wait Form With image in background and Finally I transfer user to Home Form once processing is done. I want to add Progress bar to Wait Form. Once Wait Form is loaded, it should display progress bar.

    I want...
    See more | Go to post

  • parshupooja
    started a topic get Datatype with the help of ADOX
    in .NET

    get Datatype with the help of ADOX

    Hey all,

    I have Arraylist where I have stored names of Tables.I have two datasources one is SQL and one is Access, they have equal number of tabels. I am trying to find Access databse column and datatypes matches to Sql columns and their datatypes not.

    I am using Adox and unable to understand what shd I do next.

    here is code adn throws error on bold 'column' place
    Error Cannot convert type 'char'...
    See more | Go to post

  • parshupooja
    replied to Forgot Password
    in .NET
    try this, it works
    Code:
    protected void Submit_Click(object sender, EventArgs e)
        {
            string FieldRepId = UserName.Text;
            bool result = SendEmail(userid);
            if (result == true)
                Response.Redirect("Default.aspx");
            else UserName.Text = "";
            lblStatus.Visible = true;
            lblStatus.Text = "Error Sending Email.";
    ...
    See more | Go to post

    Leave a comment:


  • thanks it worked. :)...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...