User Profile

Collapse

Profile Sidebar

Collapse
DAnDA
DAnDA
Last Activity: Dec 31 '07, 10:54 AM
Joined: Jun 18 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • DAnDA
    started a topic Gridview Delete Not Working and no Error
    in .NET

    Gridview Delete Not Working and no Error

    ASP.net 2 ,,,i have a gridview using sqldatasource,, ,, when i click on delete the page just refreshe and the records never get deleted ,,,

    Is there any way to figure out what's going on and how to fix it?
    See more | Go to post

  • DAnDA
    replied to Hide all controls in a panel in ASP.Net
    in .NET
    Thank you All Guys ,,,
    See more | Go to post

    Leave a comment:


  • Thanks For Care,,,but i had two more questions

    First .how to Check the Type of Elements

    Second .i want get all textbox controls in a specified Panel ,,,
    for example :
    [HTML]<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">
    <asp:TextBox ID="TextBox2" runat="server"> </asp:TextBox>...
    See more | Go to post
    Last edited by acoder; Oct 15 '07, 06:38 PM. Reason: Added code tags

    Leave a comment:


  • DAnDA
    started a topic Hide all controls in a panel in ASP.Net
    in .NET

    Hide all controls in a panel in ASP.Net

    Hi

    Simply i want Hide all Textboxes in a Panel ,,, in asp.net

    i can do it by C# :
    [code=cpp]
    foreach (Control ctrl in Panel1.Controls )
    {
    if (ctrl is TextBox)
    {
    ((TextBox)(ctrl )).Visible = false;
    }

    }
    [/code]
    Can anyone tell me how to do in JavaScript?
    See more | Go to post

  • DAnDA
    started a topic Hide all controls in a panel in ASP.Net
    in .NET

    Hide all controls in a panel in ASP.Net

    Hi

    Simply i want Hide all Textboxes in a Panel ,,, in asp.net

    i can do it by C# :

    foreach (Control ctrl in Panel1.Controls )
    {
    if (ctrl is TextBox)
    {
    ((TextBox)(ctrl )).Visible = false;
    }

    }

    Can anyone tell me how to do in JavaScript?
    See more | Go to post

  • Hide all controls in a panel in ASP.Net (Take a look please)

    Hi

    Simply i want Hide all Textboxes in a Panel ,,, in asp.net

    i can do it by C# :

    [CODE=cpp] foreach (Control ctrl in Panel1.Controls )
    {
    if (ctrl is TextBox)
    {
    ((TextBox)(ctrl )).Visible = false;
    }

    }
    [/CODE] ...
    See more | Go to post
    Last edited by acoder; Oct 15 '07, 03:58 PM. Reason: Added code tags

  • Why no one didnt answer me (GridView Filtering)

    Hi

    Look ,,,Theres GrdiView1 , Dropdownlist1 , TextBox1 And a button

    Gridview1 Contain "FirstName . LastName" Columns ,,, i want Filter Gridview1 by using DropDownlist1 To Select which Column should be Filter And TextBox1 to define Filter Condition

    im Using Asp.Net , C# , SqlDataSource,, ,thinkin i Have to use SqlDataSource.F ilterExpression...
    See more | Go to post

    Leave a comment:


  • Advanced GridView Filtering

    Hi

    Look ,,,Theres GrdiView1 , Dropdownlist1 , TextBox1 And a button

    Gridview1 Contain "FirstName . LastName" Columns ,,, i want Filter Gridview1 by using DropDownlist1 To Select which Column should be Filter And TextBox1 to define Filter Condition

    im Using Asp.Net , C# , SqlDataSource,, ,thinkin i Have to use SqlDataSource.F ilterExpression Property...
    See more | Go to post

    Leave a comment:


  • Sorting GRIDVIEW Automatically Asp.net C# (Take a Look Please)

    I have a Gridview Which as you know it was sorted by Ascending by default.

    Now i want Gridview to Sorting Descending On Load,,,

    i want somthing like Below:

    protected void Page_Load(objec t sender, EventArgs e)
    {
    Gridview1.Sortd irection = Descending;
    }

    Do you understand what im Saying?!

    Asp.Net C#

    Help Me if you can
    See more | Go to post

  • DAnDA
    started a topic Binding a TextBox to Xml ASP.Net
    in .NET

    Binding a TextBox to Xml ASP.Net

    Hi

    i have an XML File Which Contain <title>Test</title> Element
    I Want to Bind my Textbox to XML <title>Test</title>to Display & Edit Data ,,Without using Gridview, FormView, Repeater ,,,, im using VS2005 ASP.net C#

    Is There AnyWay??
    See more | Go to post

  • DAnDA
    started a topic Binding a TextBox to Xml ASP.Net
    in .NET

    Binding a TextBox to Xml ASP.Net

    Hi

    i have an XML File Which Contain <title>Test</title>
    I Want to Bind my Textbox to XML <title>Test</title>to Show & Edit Data Without using Gridview, FormView, Repeater ...,,,ASP.net C#

    Is There AnyWay???
    See more | Go to post

  • DAnDA
    started a topic Binding TextBox to XML ASP.Net C#
    in .NET

    Binding TextBox to XML ASP.Net C#

    Hi

    i have an XML File Which Contain <title>Test</title>
    I Want to Bind my Textbox Value to XML <title>Test</title> Without using Gridview, FormView, Repeater ...,,,Using ASP.net C#

    Is There AnyWay???
    See more | Go to post

  • DAnDA
    started a topic screen Scraping of Current webpage ASP.net C#
    in .NET

    screen Scraping of Current webpage ASP.net C#

    i have a webpage and theres some Labels and a ;Button,,, i want to when button1 clicked take a screenshot of Current webpage instantly and save as a jpeg,,,using ASP.net C# JS

    Can anyone help?
    See more | Go to post

  • DAnDA
    started a topic Retrieve Location And Size of A WebControl in Asp.net
    in .NET

    Retrieve Location And Size of A WebControl in Asp.net

    i want to take a Screenshot of a specified webControl in Asp.net C# im looking for somthing like "System.Windows .Forms Bounds" but i want retrieve Size and Location of a WebControl inside Webpage..

    Anyone have any solution?
    See more | Go to post

  • DAnDA
    replied to Add menu item at runtime
    in .NET
    Excusme i have another question ,,, is There anyway to Save dynamic control which was created at runtime, and use it like Control which created at Design Time in ASP.Net

    i Think not,,, Right???
    See more | Go to post

    Leave a comment:


  • DAnDA
    replied to Add menu item at runtime
    in .NET
    im using ASP.Net C# ,,, i want to use it at PageLoad,,, and i haven`t any tried,,im an Amateur

    Any thanks for Care
    See more | Go to post

    Leave a comment:


  • DAnDA
    started a topic Add menu item at runtime
    in .NET

    Add menu item at runtime

    i want to add item to a created Menu At RunTime ,,, can anyone help me?
    See more | Go to post

  • DAnDA
    started a topic FAXCOMLib Cancel button (C#)
    in .NET

    FAXCOMLib Cancel button (C#)

    hi
    im using FAXCOMLib to Send Fax using C# ASP.Net

    i want to know how i can Cancel a FaxJob ?

    Anyone Can help?
    See more | Go to post

  • DAnDA
    started a topic Hide a control for N seconds
    in .NET

    Hide a control for N seconds

    I Want to Hide a Label for 5 Seconds Then Show it After 5 Seconds ,,,

    Using ASP.NET & JavaScript

    Can Anyone Help me??
    See more | Go to post

  • DAnDA
    started a topic Save ASPX Page As a PDF File
    in .NET

    Save ASPX Page As a PDF File

    I want to Convert my ASPX page to PDF .

    Anyone have any solution?

    Thanks in advance
    See more | Go to post
No activity results to display
Show More
Working...