really need some help with my website

Associate
Joined
12 Aug 2007
Posts
100
i have a website which connected to a rma, accounts and po system. the coder who made the site has left the company and we cant get in touch with him.

what i need help with is i want to change a few things on the sites homepage but all the files are .aspx pages which i dont have a clue how to change or where to start.

i know a little about html coding but this i have no clue. can someone please give me some help.

thanks in advance
 
here is the code for the home page, what do i change for links

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.IO;

public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Request.QueryString["restart"] != null)
{
ApplicationStuff.Application_End(Application);
ApplicationStuff.Application_Start(Application);
}

if (Request.QueryString["rabbit"] != null)
{
Session["rabbit"] = true;
}

Session["showMe"] = true;

try
{
StreamReader sr = new StreamReader(Server.MapPath(".") + "/middle.htm");
String description = sr.ReadToEnd();
litContent.Text = description;
sr.Close();
sr.Dispose();
sr = null;
}
catch
{
}
}

} // End of class
 
here is the code from the aspx file

<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default2" Title="Untitled Page" %>
<%@ Register Src="uc_right.ascx" TagName="uc_right" TagPrefix="uc1" %>
<asp:Content ID="mainContent" ContentPlaceHolderID="container" Runat="Server">

<asp:Literal ID="litContent" runat="server"></asp:Literal>

</asp:Content>
 
Back
Top Bottom