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 […]
Archive for the 'ASP.NET' Tag
OnClientClick
OnClientClick properties to close pop-up window and redirect visitor back to parent page when using jQuery. <asp:Button ID=”InsertCancelButton” runat=”server” Text=”Cancel” PostBackUrl=”~/ManageAccounts.aspx” OnClientClick=”window.document.forms[0].target=’_parent’;” /> Code behind – Login.aspx.vb Partial Class Login Inherits System.Web.UI.Page Protected Sub Submit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Submit.Click ‘/ define vars Dim usn As TextBox Dim pwd As TextBox […]
GridView Amount Difference
Simple amount difference code in GridVeiw <asp:TemplateField> <ItemTemplate> <%# FormatCurrency(Convert.ToString(Container.DataItem(“Amount1”)-Container.DataItem(“Amount2”)))%> </ItemTemplate> </asp:TemplateField>