Web Forms :: Passing Linq Statement Between Master And Content Page?
Aug 21, 2010
I usually work with windows forms, and am just starting to work with ASP.Net, so appologies if this is a dumb question!
I have a master page which has a search button on it. The results of this are built up using a Linq statement and if there are any results, I want to display the results in a contents page.
I have built a blog that sees the index on the master page and the blog pages within in the ContentPlaceHolder of the master page. The Blog pages use SQLDatasource control with the QueryStringParameter to pull the selection from the address bar.
My question is there any other way to communicate between master and content page, rather than query string (with out using cookies, or sessions)?
I have a need to put a search field (text box) on the master page to search the contents of the blog pages, I would like to use the controlparameter of the sqldatasource on the blog page, but I have not idea how to do this ? What can be done to allow a textbox on master page and SQLDatasource talk to each other in this manner ?
is the query string passing my only option btw master and content?
My project has the following repeater menu shown on the Master Page. I need this menu to remain hidden until the user logs in. How do I access from content page?
How to I put this form on my page? The problem is I have a master page which wraps the content pages content in the ASP.net form, I can't nest the forms.
I have a master page setup that is used throughout my site that is basically a header with a menu. I recently added a textbox and a button to this master page which is to be a quick search box that is available anywhere in the site. When a user enters text into the search box and hits the button, I need to load the actual content page which is used to search and show search results (which also uses this same master page), and have the text entered available so the search can be triggered automatically. Again, this search text box and button is now in my master page so it could be triggered from anywhere in the app... it serves as a convenient way to do a basic search from anywhere in my app, without having to first navigate to the actual 'search page' that already exists. You can also navigate to the actual search page, which uses the same master page, where there is many more search options.I'm thrown off by the master page arrangement, which I have not used until this project. What do I do?
I am having asp:hyperlinks in my master page, which i use as my page headers. I would just like to change the text format of the hyperlink when a content page is loaded.
the CS code for accessing the master page contents from content page?
I am having trouble with this I have 3 Data tables i use over and over again which are cached I would like to write a LINQ statement which would do the following is this possible?
T-SQL VERSION:
SELECT P.[CID],P.[AID] ,B.[AID], B.[Data], B.[Status], B.[Language] FROM MY_TABLE_1 P JOIN ( SELECT A.[AID], A.[Data], A.[Status], A.[Language] FROM MY_TABLE_2 A UNION ALL SELECT B.[AID], B.[Data], B.[Status], B.[Language] FROM MY_TABLE_3 B ) B on P.[AID] = B.[AID] WHERE B.[Language] = 'EN' OR B.[Language] = 'ANY' AND B.STATUS = 1 AND B.[Language] = 'EN' OR B.[Language] = 'ANY' AND B.STATUS = 1
Then i would like it to create a result set of the following
Can I ask what this error refers to, (I have had it twice now over the last couple of days and then it goes away):
System.Web.HttpException: Content controls are allowed only in content page that references a master page.
This is followed by Stack Trace:
[HttpException (0x80004005): Content controls are allowed only in content page that references a master page.] System.Web.UI.MasterPage.CreateMaster(TemplateControl owner, HttpContext context, VirtualPath masterPageFile, IDictionary contentTemplateCollection) +9744256 System.Web.UI.Page.get_Master() +55 System.Web.UI.Page.ApplyMasterPage() +14 System.Web.UI.Page.PerformPreInit() +51 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1104
I am not using any Content Place Holder or Master Page (does the error refer to the Site.Master file because while I can see it in. Solution Explorer, I never use it. All of my aspx files look like this along the top with no reference to Site.Master:
In master page I am using asp content place holder. And in my child page I am using pure html coding. When I attach master page in my child page I am getting this error.Content controls have to be top-level controls in a content page or a nested master page that references a master page.
how can i add title and meta tags for content pages in a project base on master and content page(dinamically) ?
i used the blow method for master page :
[code]....
and the error is :(in line *)
Error 17 'System.Web.UI.MasterPage' does not contain a definition for 'SetMetaTags' and no extension method 'SetMetaTags' accepting a first argument of type 'System.Web.UI.MasterPage' could be found (are you missing a using directive or an assembly reference?)
I need to access a variable that is declared in a master page to a child page. I'm using asp.net 2.0 (vb). I'm sure this should be easy and is down to my inexperience with asp.net! A rough guide to my code is below;
MASTER PAGE <%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %> <script runat="server"> Public UserNumber As Integer = 3 End Sub </script> CHILD PAGE <%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>
I am using Master page and Content page combination.But how can i access <body> tag and it's event (onload, onunload) of Master page in .aspx page that is not a content page.
I have a master page homeMaster.aspx and many content pages. However the situation is I have few .html pages. Now when a user clicks on a link the html page should get loaded.inside the master page. The problem is these are .html and not content page with .aspx.
I have a 3 level nested master pages and a content page. parent1 is the top parent, parent2 is parent of parent3 and parent3 is the parent of the content page.
I get an error 'Cannot find ContentPlaceHolder xxx...' where xxx is a ContentPlaceholder. It resides in parent2 and content page is trying to fill it.
Can content pages only use their direct parent ContentPlaceHolders or can they also use any of the higher master pages?
I've a form containing 30+ textboxes. I'd like to save the data entered in the form texboxes in an object(session) and pass them into another page and simply display the values in a tabular form. How can i do that. Also, suggest me the best way to do it.
Following is the structure of the pages in application
[Code]....
Suppose the user is on ..../paycheck.aspx which is the content page. But when ...../paycheck.aspx loads, "lnkDynamic" properties "Text and PostBackUrl" must be set. Which events should be handled .....
I want to call a javascript method during page load. I am using application.master of the sharepoint server 2007 as the master page . In the content page i want to call a custom method named OnLoadFun() during loading the content page. I have written the function inside script tag in the PlaceHolderAdditionalPageHead id section of the content page.
[Code]....
How do i call the OnLoadFun method so the i is being called onload time. i tried putting window.onload=OnLoadFun surrounded by script tag within the PlaceHolderMain content section.
I have a javascript function on my Master page, how do I access it with a dropdownlist of a content page. Not from codebehind, I can do that, but from the control itself such as the onSelectedIndexChanged event.
how to remove master page prefix from control ID after rendering content page
i m using master page in my web application, i am using a java script that works on one of my div id and i am genrating div at run time using C# code, problem is that one one of my content page rendred a prefix ct100 attached on that div,
How can i remove that prefix from my server side control (assume panel) id
I have a master page with a form on it. It's a people search form. When the user clicks on the search button it goes to the search results page that uses the same master page. With the code below I get the info off the master of the current page. Howdo I grab that info from the first page? Here's the code:
Imports System Imports System.Web.UI Imports System.Web.UI.WebControls Partial Class mstrIntranet Inherits System.Web.UI.MasterPage Public Property mSearchName() Get Return txtSearchName.tex End Get Set(ByVal value) txtSearchName.text = value End Set End Property
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load txtSearchName.Text = "People Search" End Sub End Class
Search Results Code Behind page:
Partial Class PeopleSearch2 Inherits System.Web.UI.Page Public SearchName As String
Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim mpTextbox As TextBox mpTextbox = CType(Master.FindControl("txtSearchName"), TextBox) SearchName = mpTextbox.Text
Wondering if it is possible to access a master page's hidden field (ex. <Input Type="Hidden" ID="TestHiddenField" Value="testValue"/>) From a Content Page's C# Pack CS Page.If it is possible, How do I go about doing so? I have tried:
PreviousPage.Master.FindControl("[TestHiddenField]") but no .Value attribute and no luck in general.
I have a MasterPage where I use the menu control. Clicking a menu item loads a new content page. That part works fine.
I would like to use staticselected style to change the look of the selected menu item. However, when the new content page loads, the staticselectedsyle formatting does not work.