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
Anuradha612
Posts
-
beginners question -
How to disable prompts for ActiveX controlsHi, 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
-
GridView PagingHi, 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
-
Opening a view new grid view within a grid viewHi, 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 caching problemthere is no effect with the two solutions provided, could u pls suggest some other alternative Thanks
-
ASP.Net caching problemHi, 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
-
How to clear browser history pages programmatically from ASP.Net web pageThere might be some solution to the problem, i am seriously stuck up with that issue
-
How to clear browser history pages programmatically from ASP.Net web pageWhen 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
-
How to clear browser history pages programmatically from ASP.Net web pageHi, can some body tell me How to clear browser history pages programmatically from ASP.Net web page
-
Pop up window in ASP.NetPls 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
-
Pop up window in ASP.NetHi, 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
-
Auto refreshing an ASP.Net pageHi, 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
-
Working with dynamically created controlsYes, i am unable to retreive the value entered, Pls can you be more clear, with the last post, i am unable to understand,
-
Working with dynamically created controlsThanks, I have tried out, but there is no such property
-
Working with dynamically created controlsbut 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
-
Working with dynamically created controlsHi, 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
-
Grid view row heightHi, 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
-
Opening different files from the browserAtleast the basic formats like word, excel, power point, pdf docs should be supported, is there any mechanism to do this
-
Opening different files from the browserHi, 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
-
Displaying an Image in Grid View in ASP.NetHi, 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