Home » Applications » Archive by category "Access" (Page 6)

Archive for the 'Access' Category

Simple record query inside gridview

Here is simple record query inside the datagrid. I was looking for this solution which does not require code behind. Access DB structure Detail.aspx page code: <form id=“form1” runat=“server”> <div> <asp:GridView ID=”GridView1″ runat=”server” AutoGenerateColumns=”False” DataKeyNames=”ID” DataSourceID=”DetailView” GridLines=”None”> <Columns> <asp:TemplateField> <ItemTemplate> <table width=”660px” border=”0″ cellpadding=”0″ cellspacing=”0″> <tr> <td colspan=”4″> <a href=”Detail.aspx?cid=<%#Container.DataItem(“ID”)%>&pic=p1″><img src=”images/<%# Container.DataItem(“Pic1″)%>” width=”75px” height=”54px” border=”0″/></a>&nbsp; […]

Operation must use an updateable query

Server Error in ‘/TestSite’ Application Operation must use an updateable query. Issue: Denied right to ASP.NET Machine Account to modify access db Resolution – Make sure Internet Guest Account has a read/write rights – Open application folder properties and add ASP.NET Machine Account if does not exist – Permit the ASP.NET Machine Account to modify […]