Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Anuradha612

@Anuradha612
About
Posts
23
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • beginners question
    A Anuradha612

    Use Master Pages, design those items (like menus which should appear in all pages in a Master Page) and then later design content pages for the master page. for more info on Master Pages search in Google

    ASP.NET question csharp asp-net

  • How to disable prompts for ActiveX controls
    A Anuradha612

    Hi, I am using an ActiveX control in a web page, when a button is clicked the control is executed in java script code, Before executing the control, the system is displaying a prompt message that: An activeX control on this page might be unsafe to interact with other parts of the page, Do you want to allow this interaction. is there any way to disable such prompts. Thanks in Advance

    ASP.NET java com tools tutorial

  • GridView Paging
    A Anuradha612

    Hi, protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView1.PageIndex = e.NewPageIndex; Gridview1.DataSource = tblData; //this should be your data table GridView1.DataBind(); } The logic written above will work if and only if you declare your data table as shared, (i.e) shared tblData as DataTable Check out this

    ASP.NET

  • Opening a view new grid view within a grid view
    A Anuradha612

    Hi, I have an application, where in i want a new data grid to be displayed when i click a record in the grid. and the new grid should be displayed just beneath the row clicked (i.e) the new grid should be within the old grid. Can somebody help me in this regard. Thanks in advance

    ASP.NET css help

  • ASP.Net caching problem
    A Anuradha612

    there is no effect with the two solutions provided, could u pls suggest some other alternative Thanks

    ASP.NET csharp asp-net help tutorial

  • ASP.Net caching problem
    A Anuradha612

    Hi, Can some body please tell me, of how to prevent ASP.Net pages from being cached, Each time i request the page, it retreives the page from the cached ones, then to reflect the new changes, i have refresh it every time, Thanks in advance

    ASP.NET csharp asp-net help tutorial

  • How to clear browser history pages programmatically from ASP.Net web page
    A Anuradha612

    There might be some solution to the problem, i am seriously stuck up with that issue

    ASP.NET csharp asp-net tutorial

  • How to clear browser history pages programmatically from ASP.Net web page
    A Anuradha612

    When ever i try to open the page, if there is some cached content, it retreives that old page instead of the newly updated one, then each time i had to refresh the page to reflect the newly made changes Thanks in advance

    ASP.NET csharp asp-net tutorial

  • How to clear browser history pages programmatically from ASP.Net web page
    A Anuradha612

    Hi, can some body tell me How to clear browser history pages programmatically from ASP.Net web page

    ASP.NET csharp asp-net tutorial

  • Pop up window in ASP.Net
    A Anuradha612

    Pls can you be more clear with the post, i have never used the function said above, can you explain the parameters for the function.. and another important issue is that, i am creating the button dynamically and for that button click, i should be able to open a popup window

    ASP.NET csharp asp-net help

  • Pop up window in ASP.Net
    A Anuradha612

    Hi, I am developing an application, which needs a pop up window to be opened, when a button is clicked, i have tried out Response.redirect, but then it navigates from one page to another, i want both the windows to be opened, can some body help me in this regard

    ASP.NET csharp asp-net help

  • Auto refreshing an ASP.Net page
    A Anuradha612

    Hi, I have a problem with web pages, each time i run the appln, the pages are loaded from history, which are not updated. Though i clear the history, each time its not possible to do that, can some body tell ne how to refresh an web page programatically. Thanks in advance

    ASP.NET csharp asp-net help tutorial

  • Working with dynamically created controls
    A Anuradha612

    Yes, i am unable to retreive the value entered, Pls can you be more clear, with the last post, i am unable to understand,

    ASP.NET help question

  • Working with dynamically created controls
    A Anuradha612

    Thanks, I have tried out, but there is no such property

    ASP.NET help question

  • Working with dynamically created controls
    A Anuradha612

    but i am unable to refer to the text property for textboxes, here is how my code goes, to create control Dim fldMetadata As TextBox fldMetadata = New TextBox fldMetadata.ID = "txtID" Panel1.Controls.Add(fldMetadata) I refer to the controls like this, Dim ctrl As Control For Each ctrl In Panel1.Controls If ctrl.ID Like "txtID" Then 'Here i should be able to refer to the control's text property End If Next thanks

    ASP.NET help question

  • Working with dynamically created controls
    A Anuradha612

    Hi, I have an appln where in i need to create, text boxes and drop downlists dynamically, the issue here is, how do i retreive the text stored in text box and value selected in the combo. Thanks in advance

    ASP.NET help question

  • Grid view row height
    A Anuradha612

    Hi, I have a grid view in a web page, i am using paging for that, the problem is if the grid view contains 2 or 3 records, these rows occupy entire grid view space(i.e full height of the grid view), is there any way to control this, i want the row height to be static even there 2 rows or 200 rows. Thanks in advance

    ASP.NET css help

  • Opening different files from the browser
    A Anuradha612

    Atleast the basic formats like word, excel, power point, pdf docs should be supported, is there any mechanism to do this

    ASP.NET css help tutorial

  • Opening different files from the browser
    A Anuradha612

    Hi, I am developing an application which needs to work with the files. In one page, i have a grid view which lists all the files used for my application, i have used hyperlink column in grid view for these filenames. If i click on the filename in the grid view, the file should be opened in the browser (i.e) it should not open the file in its original format (for example if it is a word document, it should not open in MS Word), it should open only in the browser. Files can be of any type - word, excel, ppts, jpegs etc. I have tried using Response.Redirect with full path, but that is not the result, which i am expecting. Can some body help me in this regard. Thanks in Advance Anuradha

    ASP.NET css help tutorial

  • Displaying an Image in Grid View in ASP.Net
    A Anuradha612

    Hi, I need to display a image in grid view. the image will vary for every record (i.e) if the data in the row is of less priority then the image will be in red color and if it is in high priority, then of some other color. and Probably the image will be stored in the database Can somebody suggest some mechanism for this. Thanks in advance

    ASP.NET css csharp asp-net database
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups