Note that there are some explanatory texts on larger screens.

plurals
  1. POIframes quick question
    text
    copied!<p>i used the following code</p> <p> </p> <p> </p> <pre><code>&lt;a href="Projects.aspx" target="iframeTab"&gt; Project Management &lt;/a&gt; | &lt;a href="ProjectUsers.aspx" target="iframeTab"&gt; Project Users &lt;/a&gt; &lt;iframe src="Projects.aspx" id="iframeTab" width="100%" height="768" frameborder="1" scrolling="auto" /&gt; &lt;asp:GridView DataKeyNames="ID" ID="ctrlGrid" runat="server" AutoGenerateColumns="False" OnDataBound="ctrlGrid_DataBound" OnRowDeleting="ctrlGrid_RowDeleting" OnRowEditing="ctrlGrid_RowEditing"&gt; &lt;Columns&gt; &lt;asp:BoundField DataField="Name" HeaderText="Name" /&gt; &lt;asp:BoundField DataField="CompanyName" HeaderText="Company" /&gt; &lt;asp:HyperLinkField DataNavigateUrlFields="ID" DataNavigateUrlFormatString="~/TimeFilter.aspx?ProjectID={0}" HeaderText="Time" Text="Time" /&gt; &lt;asp:HyperLinkField DataNavigateUrlFields="ID" DataNavigateUrlFormatString="~/ProjectNotes.aspx?ProjectID={0}" HeaderText="Notes" Text="Notes" /&gt; &lt;asp:HyperLinkField DataNavigateUrlFields="ID" DataNavigateUrlFormatString="~/ProjectRequirements.aspx?ProjectID={0}" HeaderText="Requirements" Text="Requirements" /&gt; &lt;asp:CommandField ButtonType="Button" ShowDeleteButton="True" ShowEditButton="True" /&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; &lt;br /&gt; &lt;a href="ProjectEdit.aspx"&gt;Add new project&lt;/a&gt; </code></pre> <p></p> <p>the iframes part</p> <p> Project Management | Project Users </p> <p>lets the tabbing come up in the Project.aspx page, but when i click on either of the two tabs it doesnt seem to hyperlink. how can i rectify that?</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload