Link to home
Start Free TrialLog in
Avatar of mathieu_cupryk
mathieu_cuprykFlag for Canada

asked on

Oracle:Specified driver could not be loaded due to system error 5

I had this error before what is it a permission one? How do I fix it?


ERROR [IM003] Specified driver could not be loaded due to system error 5 (Oracle in OraHome92).
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: Microsoft.Data.Odbc.OdbcException: ERROR [IM003] Specified driver could not be loaded due to system error 5 (Oracle in OraHome92).

Source Error:


Line 73: {
Line 74:       OdbcConnection myConnection =  new OdbcConnection("DSN=MSPOS;UID=system;PWD=system");
Line 75:     myConnection.Open();
Line 76:          
Line 77:     // get records from the table
 

Source File: D:\Inetpub\wwwroot\MSPOS\Stores.aspx    Line: 75

Stack Trace:


[OdbcException: ERROR [IM003] Specified driver could not be loaded due to system error  5 (Oracle in OraHome92).]
   Microsoft.Data.Odbc.OdbcConnection.Open() +646
   ASP.Stores_aspx.BindData() in D:\Inetpub\wwwroot\MSPOS\Stores.aspx:75
   ASP.Stores_aspx.Page_Load(Object sender, EventArgs e) in D:\Inetpub\wwwroot\MSPOS\Stores.aspx:64
   System.Web.UI.Control.OnLoad(EventArgs e) +67
   System.Web.UI.Control.LoadRecursive() +35
   System.Web.UI.Page.ProcessRequestMain() +731

 

ASKER CERTIFIED SOLUTION
Avatar of CallumT
CallumT

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mathieu_cupryk

ASKER

Nothing?
Server Error in '/MSPOS' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0246: The type or namespace name 'OdbcConnection' could not be found (are you missing a using directive or an assembly reference?)

Source Error:

 

Line 18: protected string AccessLevel = null;
Line 19: private DataSet ddlDataSet = new DataSet();
Line 20: private OdbcConnection myConnection =  new OdbcConnection("DSN=MSPOS;UID=system;PWD=system");
Line 21: private DataSet ddlDataSet1 = new DataSet();
Line 22:
 

Source File: D:\Inetpub\wwwroot\MSPOS\Stores.aspx    Line: 20



Show Detailed Compiler Output:


d:\windows\system32\inetsrv> "d:\windows\microsoft.net\framework\v1.1.4322\csc.exe" /t:library /utf8output /R:"d:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\mspos\7fd4084b\87fe2220\xu8u-nhm.dll" /R:"d:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\mspos\7fd4084b\87fe2220\nf-ci2dl.dll" /R:"d:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll" /R:"d:\windows\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system.web.dll" /R:"d:\windows\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll" /R:"d:\windows\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a3a\system.web.services.dll" /R:"d:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\mspos\7fd4084b\87fe2220\assembly\dl2\c46bda45\00435b3c_0eb5c401\activedatetime.dll" /R:"d:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system.xml.dll" /R:"d:\windows\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll" /R:"d:\windows\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\system.web.mobile.dll" /R:"d:\windows\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\system.data.dll" /R:"d:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseservices.dll" /R:"d:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\mspos\7fd4084b\87fe2220\assembly\dl2\171e319b\04cedd67_a1bcc401\mspos.dll" /R:"d:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\mspos\7fd4084b\87fe2220\n7uw8xo7.dll" /R:"d:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\mspos\7fd4084b\87fe2220\wdotaos7.dll" /out:"D:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\mspos\7fd4084b\87fe2220\zqmoepbz.dll" /D:DEBUG /debug+ /optimize- /win32res:"D:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\mspos\7fd4084b\87fe2220\zqmoepbz.res" /warnaserror /w:1 /R:"D:\Program Files\Microsoft.NET\Odbc.Net\Microsoft.data.odbc.dll"  "D:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\mspos\7fd4084b\87fe2220\zqmoepbz.0.cs"


Microsoft (R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

D:\Inetpub\wwwroot\MSPOS\Stores.aspx(20,9): error CS0246: The type or namespace name 'OdbcConnection' could not be found (are you missing a using directive or an assembly reference?)

 



Show Complete Compilation Source:


Line 1:    //------------------------------------------------------------------------------
Line 2:    // <autogenerated>
Line 3:    //     This code was generated by a tool.
Line 4:    //     Runtime Version: 1.1.4322.573
Line 5:    //
Line 6:    //     Changes to this file may cause incorrect behavior and will be lost if
Line 7:    //     the code is regenerated.
Line 8:    // </autogenerated>
Line 9:    //------------------------------------------------------------------------------
Line 10:  
Line 11:   namespace ASP {
Line 12:       using System;
Line 13:       using System.Collections;
Line 14:       using System.Collections.Specialized;
Line 15:       using System.Configuration;
Line 16:       using System.Text;
Line 17:       using System.Text.RegularExpressions;
Line 18:       using System.Web;
Line 19:       using System.Web.Caching;
Line 20:       using System.Web.SessionState;
Line 21:       using System.Web.Security;
Line 22:       using System.Web.UI;
Line 23:       using System.Web.UI.WebControls;
Line 24:       using System.Web.UI.HtmlControls;
Line 25:       using ASP;
Line 26:      
Line 27:       #line 4 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 28:       using System.Data;
Line 29:      
Line 30:       #line default
Line 31:       #line hidden
Line 32:      
Line 33:       #line 7 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 34:       using System.ComponentModel;
Line 35:      
Line 36:       #line default
Line 37:       #line hidden
Line 38:      
Line 39:       #line 8 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 40:       using System.Drawing;
Line 41:      
Line 42:       #line default
Line 43:       #line hidden
Line 44:      
Line 45:      
Line 46:       [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
Line 47:       public class Stores_aspx : System.Web.UI.Page, System.Web.SessionState.IRequiresSessionState {
Line 48:          
Line 49:           private static int __autoHandlers;
Line 50:          
Line 51:          
Line 52:           #line 260 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 53:           protected ASP.header_ascx header;
Line 54:          
Line 55:           #line default
Line 56:           #line hidden
Line 57:          
Line 58:          
Line 59:           #line 269 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 60:           protected System.Web.UI.WebControls.ImageButton Imagebutton1;
Line 61:          
Line 62:           #line default
Line 63:           #line hidden
Line 64:          
Line 65:          
Line 66:           #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 67:           private System.Web.UI.WebControls.TableItemStyle __control2;
Line 68:          
Line 69:           #line default
Line 70:           #line hidden
Line 71:          
Line 72:          
Line 73:           #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 74:           private System.Web.UI.WebControls.TableItemStyle __control3;
Line 75:          
Line 76:           #line default
Line 77:           #line hidden
Line 78:          
Line 79:          
Line 80:           #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 81:           private System.Web.UI.WebControls.TableItemStyle __control4;
Line 82:          
Line 83:           #line default
Line 84:           #line hidden
Line 85:          
Line 86:          
Line 87:           #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 88:           private System.Web.UI.WebControls.TableItemStyle __control5;
Line 89:          
Line 90:           #line default
Line 91:           #line hidden
Line 92:          
Line 93:          
Line 94:           #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 95:           private System.Web.UI.WebControls.TableItemStyle __control6;
Line 96:          
Line 97:           #line default
Line 98:           #line hidden
Line 99:          
Line 100:          
Line 101:          #line 290 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 102:          private System.Web.UI.WebControls.EditCommandColumn __control8;
Line 103:          
Line 104:          #line default
Line 105:          #line hidden
Line 106:          
Line 107:          
Line 108:          #line 295 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 109:          private System.Web.UI.WebControls.Label __control11;
Line 110:          
Line 111:          #line default
Line 112:          #line hidden
Line 113:          
Line 114:          
Line 115:          #line 293 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 116:          private System.Web.UI.WebControls.TemplateColumn __control9;
Line 117:          
Line 118:          #line default
Line 119:          #line hidden
Line 120:          
Line 121:          
Line 122:          #line 301 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 123:          private System.Web.UI.WebControls.Label __control14;
Line 124:          
Line 125:          #line default
Line 126:          #line hidden
Line 127:          
Line 128:          
Line 129:          #line 305 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 130:          private System.Web.UI.WebControls.TextBox __control16;
Line 131:          
Line 132:          #line default
Line 133:          #line hidden
Line 134:          
Line 135:          
Line 136:          #line 308 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 137:          private System.Web.UI.WebControls.TextBox __control18;
Line 138:          
Line 139:          #line default
Line 140:          #line hidden
Line 141:          
Line 142:          
Line 143:          #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 144:          private System.Web.UI.WebControls.TemplateColumn __control12;
Line 145:          
Line 146:          #line default
Line 147:          #line hidden
Line 148:          
Line 149:          
Line 150:          #line 314 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 151:          private System.Web.UI.WebControls.ImageButton __control21;
Line 152:          
Line 153:          #line default
Line 154:          #line hidden
Line 155:          
Line 156:          
Line 157:          #line 318 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 158:          private System.Web.UI.WebControls.ImageButton __control23;
Line 159:          
Line 160:          #line default
Line 161:          #line hidden
Line 162:          
Line 163:          
Line 164:          #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 165:          private System.Web.UI.WebControls.TemplateColumn __control19;
Line 166:          
Line 167:          #line default
Line 168:          #line hidden
Line 169:          
Line 170:          
Line 171:          #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 172:          private System.Web.UI.WebControls.DataGridColumnCollection __control7;
Line 173:          
Line 174:          #line default
Line 175:          #line hidden
Line 176:          
Line 177:          
Line 178:          #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 179:          private System.Web.UI.WebControls.DataGridPagerStyle __control24;
Line 180:          
Line 181:          #line default
Line 182:          #line hidden
Line 183:          
Line 184:          
Line 185:          #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 186:          protected System.Web.UI.WebControls.DataGrid DataGridUserManagementID;
Line 187:          
Line 188:          #line default
Line 189:          #line hidden
Line 190:          
Line 191:          
Line 192:          #line 325 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 193:          protected ASP.logout_ascx Logout1;
Line 194:          
Line 195:          #line default
Line 196:          #line hidden
Line 197:          
Line 198:          
Line 199:          #line 327 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 200:          protected ASP.footer_ascx footer;
Line 201:          
Line 202:          #line default
Line 203:          #line hidden
Line 204:          
Line 205:          
Line 206:          #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 207:          protected System.Web.UI.HtmlControls.HtmlForm form1;
Line 208:          
Line 209:          #line default
Line 210:          #line hidden
Line 211:          
Line 212:          private static bool __initialized = false;
Line 213:          
Line 214:          private static object __stringResource;
Line 215:          
Line 216:          private static System.Collections.ArrayList __fileDependencies;
Line 217:          
Line 218:          
Line 219:          #line 17 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 220:          
Line 221:  protected string AccessLevel = null;
Line 222:  private DataSet ddlDataSet = new DataSet();
Line 223:  private OdbcConnection myConnection =  new OdbcConnection("DSN=MSPOS;UID=system;PWD=system");
Line 224:  private DataSet ddlDataSet1 = new DataSet();
Line 225:  
Line 226:  private void MainMenu_Click(Object sender, ImageClickEventArgs e)
Line 227:  {
Line 228:     AccessLevel = Session["Authenticated"].ToString();
Line 229:        if (AccessLevel == "1")
Line 230:              Response.Redirect("AdminStart.aspx");        
Line 231:        else if (AccessLevel == "2")
Line 232:              Response.Redirect("CCManStart.aspx");        
Line 233:        else if (AccessLevel == "3")
Line 234:              Response.Redirect("CCashierStart.aspx");        
Line 235:        else if (AccessLevel == "4")
Line 236:              Response.Redirect("CashierStart.aspx");        
Line 237:        else Response.Redirect("Error.aspx");
Line 238:  }
Line 239:  
Line 240:  //************************************************************
Line 241:  // Get Stores and populate dataset with STOREID and Store
Line 242:  private DataSet BindStores()
Line 243:  {
Line 244:        OdbcConnection myConnection =  new OdbcConnection("DSN=MSPOS;UID=system;PWD=system");
Line 245:  
Line 246:      // Populate the ddlDataSet
Line 247:     myConnection.Open();
Line 248:     const string strSQLDDL = @"SELECT STOREID, STORE FROM TBSTORES ORDER BY STOREID";
Line 249:     OdbcDataAdapter myDataAdapter = new OdbcDataAdapter(strSQLDDL, myConnection);
Line 250:     ddlDataSet1.Clear();  
Line 251:     myDataAdapter.Fill(ddlDataSet1, "ddlStores");
Line 252:     myDataAdapter.Dispose();
Line 253:     myDataAdapter = null;
Line 254:     myConnection.Close();
Line 255:     return ddlDataSet1;
Line 256:  }
Line 257:  //************************************************************
Line 258:  
Line 259:  
Line 260:  
Line 261:  //****************************************************************
Line 262:  protected void Page_Load(object sender, System.EventArgs e)
Line 263:  {
Line 264:        if (!Page.IsPostBack)
Line 265:        {
Line 266:              BindData();
Line 267:        }
Line 268:  }
Line 269:  //****************************************************************
Line 270:  
Line 271:  
Line 272:  
Line 273:  //****************************************************************
Line 274:  private void BindData()
Line 275:  {
Line 276:        OdbcConnection myConnection =  new OdbcConnection("DSN=MSPOS;UID=system;PWD=system");
Line 277:      myConnection.Open();
Line 278:           
Line 279:      // get records from the table
Line 280:      string commandString = @"SELECT STOREID, STORE FROM TBSTORES ORDER BY STOREID";      
Line 281:      // Set the datagrid's datasource to the datareader and databind
Line 282:      // Create a OdbcCommand object and assign the connection connect to the database
Line 283:      OdbcCommand command = myConnection.CreateCommand( );
Line 284:      command.CommandText = commandString;
Line 285:      command.Connection = myConnection;
Line 286:        // Create the Reader and bind it to the datagrid
Line 287:      OdbcDataReader reader =  command.ExecuteReader(CommandBehavior.CloseConnection);
Line 288:      DataGridUserManagementID.DataSource=reader;
Line 289:      DataGridUserManagementID.DataBind();
Line 290:        reader.Close();
Line 291:        reader=null;
Line 292:      myConnection.Dispose();
Line 293:        myConnection.Close();
Line 294:             
Line 295:  }
Line 296:  //****************************************************************
Line 297:  
Line 298:  //************************************************************
Line 299:  private void DataGridUserManagementID_SelectedIndexChanged(object sender, System.EventArgs e)
Line 300:  {
Line 301:        int intCount;
Line 302:        for (intCount = 1; intCount <= DataGridUserManagementID.Items.Count; intCount ++)
Line 303:            DataGridUserManagementID.Items[intCount - 1].BorderStyle =  BorderStyle.Groove;
Line 304:  
Line 305:        DataGridUserManagementID.SelectedItem.BorderStyle = BorderStyle.Dashed;
Line 306:  }
Line 307:  //************************************************************
Line 308:  
Line 309:  
Line 310:  
Line 311:  //****************************************************************
Line 312:  private void DataGridUserManagementID_Delete(object source,
Line 313:  System.Web.UI.WebControls.DataGridCommandEventArgs e)
Line 314:  {
Line 315:      // Get the StoreID of the row whose Delete button was clicked
Line 316:      
Line 317:      string strStoreID = ((Label)e.Item.FindControl("lblStoreID")).Text;
Line 318:      int SelectedStoreID = Convert.ToInt32(strStoreID);
Line 319:        string strSQL="Delete From TBSTORES where STOREID='"+ SelectedStoreID +"'";
Line 320:      ExecuteQuery(strSQL);
Line 321:      DataGridUserManagementID.EditItemIndex = -1;
Line 322:      BindData();
Line 323:  }
Line 324:  //****************************************************************
Line 325:  
Line 326:  
Line 327:  
Line 328:  //***************************************************************
Line 329:  private int ExecuteQuery(string sqlCmd)
Line 330:  {
Line 331:     // Create a OdbcCommand object and assign the connection connect to the database
Line 332:     OdbcConnection myConnection =  new OdbcConnection("DSN=MSPOS;UID=system;PWD=system");
Line 333:     myConnection.Open();
Line 334:     OdbcCommand command = myConnection.CreateCommand( );
Line 335:     command.CommandText = sqlCmd;
Line 336:     command.Connection = myConnection;
Line 337:     return command.ExecuteNonQuery();
Line 338:  }
Line 339:  //***************************************************************
Line 340:  
Line 341:  
Line 342:  
Line 343:  //***************************************************************
Line 344:  private void DataGridUserManagementID_Update(object source,
Line 345:  System.Web.UI.WebControls.DataGridCommandEventArgs e)
Line 346:  {
Line 347:      // Determine what store was selected
Line 348:      string strStoreID, strStore;
Line 349:      // Declare Textboxes
Line 350:         // Gets the value of the key field of the row being updated
Line 351:        strStoreID = ((Label)e.Item.FindControl("lblStoreID")).Text;
Line 352:      strStore = ((TextBox)e.Item.FindControl("editStores")).Text;    
Line 353:      
Line 354:    
Line 355:        // form the update statement
Line 356:      // connect to the database
Line 357:        string cmd="Update TBSTORES Set STORE='"+ strStore +"' Where StoreID = "+ strStoreID +"";
Line 358:           ExecuteQuery(cmd);
Line 359:           DataGridUserManagementID.EditItemIndex = -1;
Line 360:      BindData(  );
Line 361:    
Line 362:  }
Line 363:  //************************************************************************
Line 364:  
Line 365:  
Line 366:  
Line 367:  //************************************************************************
Line 368:  protected int GetSelectedIndexStore(string StoreID)
Line 369:  {  
Line 370:     int iLoop;  
Line 371:     DataTable dt = ddlDataSet1.Tables["ddlStores"];  
Line 372:     for (iLoop=0; iLoop < dt.Rows.Count - 1; iLoop++)
Line 373:     {  
Line 374:              if (StoreID.Equals(dt.Rows[iLoop]["STOREID"].ToString()))  
Line 375:                return iLoop;  
Line 376:     };  
Line 377:     return 0;  
Line 378:    
Line 379:  }
Line 380:  //***************************************************************
Line 381:  
Line 382:  
Line 383:  //****************************************************************
Line 384:  private void DataGridUserManagementID_Edit(object source,
Line 385:  System.Web.UI.WebControls.DataGridCommandEventArgs e)
Line 386:  {
Line 387:        DataGridUserManagementID.EditItemIndex = e.Item.ItemIndex;
Line 388:      BindData();
Line 389:  }
Line 390:  //****************************************************************
Line 391:  
Line 392:  
Line 393:  
Line 394:  //************************************************************************
Line 395:  protected void DataGridUserManagementID_ItemCreated(Object sender, DataGridItemEventArgs e)
Line 396:  {
Line 397:        if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem || e.Item.ItemType == ListItemType.EditItem)
Line 398:        {
Line 399:              ImageButton btn = (ImageButton)e.Item.FindControl("btnDel");
Line 400:            btn.Attributes.Add("onclick", "return confirm('Are you sure you want to delete this item.')");
Line 401:        }
Line 402:  }
Line 403:  //************************************************************************
Line 404:  
Line 405:  
Line 406:  //******************************************************************************
Line 407:  private void DataGridUserManagementID_ItemDataBound(object sender,
Line 408:  System.Web.UI.WebControls.DataGridItemEventArgs e)
Line 409:  {
Line 410:      ListItemType oType = ((ListItemType)e.Item.ItemType);
Line 411:      if(oType == ListItemType.Item || oType == ListItemType.AlternatingItem)
Line 412:      {
Line 413:              e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='lightblue'");            
Line 414:              e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='Beige'");            
Line 415:        }
Line 416:  
Line 417:  
Line 418:  }
Line 419:  //***************************************************************
Line 420:  
Line 421:  
Line 422:  //************************************************************************
Line 423:  protected void DataGridUserManagementID_ItemCommand(object sender, System.Web.UI.WebControls.DataGridCommandEventArgs e)
Line 424:  {
Line 425:  
Line 426:      if (e.CommandName == "Insert")
Line 427:      {
Line 428:         TextBox txtStore;
Line 429:         ///... declarations for remaining data fields
Line 430:  
Line 431:         string strSQL;
Line 432:           string storename;
Line 433:           
Line 434:           txtStore = (TextBox)e.Item.FindControl("add_storeID");
Line 435:         storename = txtStore.Text;
Line 436:         OdbcCommand command = myConnection.CreateCommand( );
Line 437:           command.Connection = myConnection;
Line 438:        
Line 439:         // Create the appropriate SQL statement
Line 440:         strSQL = "INSERT INTO TBSTORES (STORE) VALUES ('" +storename+"'"+")";
Line 441:         if (storename != "")
Line 442:                    ExecuteQuery(strSQL);
Line 443:         DataGridUserManagementID.EditItemIndex = -1;
Line 444:         BindData();
Line 445:      }
Line 446:  }
Line 447:  //************************************************************************
Line 448:  
Line 449:  
Line 450:  //****************************************************************
Line 451:  private void DataGridUserManagementID_Cancel(object source,
Line 452:  System.Web.UI.WebControls.DataGridCommandEventArgs e)
Line 453:  {
Line 454:      DataGridUserManagementID.EditItemIndex = -1;
Line 455:      BindData();
Line 456:  }
Line 457:  //****************************************************************
Line 458:  
Line 459:              
Line 460:          #line default
Line 461:          #line hidden
Line 462:          
Line 463:          public Stores_aspx() {
Line 464:              System.Collections.ArrayList dependencies;
Line 465:              if ((ASP.Stores_aspx.__initialized == false)) {
Line 466:                  ASP.Stores_aspx.__stringResource = System.Web.UI.TemplateControl.ReadStringResource(typeof(ASP.Stores_aspx));
Line 467:                  dependencies = new System.Collections.ArrayList();
Line 468:                  dependencies.Add("D:\\Inetpub\\wwwroot\\MSPOS\\Stores.aspx");
Line 469:                  dependencies.Add("D:\\Inetpub\\wwwroot\\MSPOS\\Engine\\Controls\\logout.ascx");
Line 470:                  dependencies.Add("D:\\Inetpub\\wwwroot\\MSPOS\\Engine\\Controls\\header.ascx");
Line 471:                  dependencies.Add("D:\\Inetpub\\wwwroot\\MSPOS\\Engine\\Controls\\footer.ascx");
Line 472:                  dependencies.Add("D:\\Inetpub\\wwwroot\\MSPOS\\bin\\MSPOS.DLL");
Line 473:                  ASP.Stores_aspx.__fileDependencies = dependencies;
Line 474:                  ASP.Stores_aspx.__initialized = true;
Line 475:              }
Line 476:              this.Server.ScriptTimeout = 30000000;
Line 477:          }
Line 478:          
Line 479:          protected override int AutoHandlers {
Line 480:              get {
Line 481:                  return ASP.Stores_aspx.__autoHandlers;
Line 482:              }
Line 483:              set {
Line 484:                  ASP.Stores_aspx.__autoHandlers = value;
Line 485:              }
Line 486:          }
Line 487:          
Line 488:          protected ASP.Global_asax ApplicationInstance {
Line 489:              get {
Line 490:                  return ((ASP.Global_asax)(this.Context.ApplicationInstance));
Line 491:              }
Line 492:          }
Line 493:          
Line 494:          public override string TemplateSourceDirectory {
Line 495:              get {
Line 496:                  return "/MSPOS";
Line 497:              }
Line 498:          }
Line 499:          
Line 500:          private System.Web.UI.Control __BuildControlheader() {
Line 501:              ASP.header_ascx __ctrl;
Line 502:              
Line 503:              #line 260 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 504:              __ctrl = new ASP.header_ascx();
Line 505:              
Line 506:              #line default
Line 507:              #line hidden
Line 508:              this.header = __ctrl;
Line 509:              
Line 510:              #line 260 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 511:              this.header.InitializeAsUserControl(this.Page);
Line 512:              
Line 513:              #line default
Line 514:              #line hidden
Line 515:              
Line 516:              #line 260 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 517:              __ctrl.ID = "header";
Line 518:              
Line 519:              #line default
Line 520:              #line hidden
Line 521:              return __ctrl;
Line 522:          }
Line 523:          
Line 524:          private System.Web.UI.Control __BuildControlImagebutton1() {
Line 525:              System.Web.UI.WebControls.ImageButton __ctrl;
Line 526:              
Line 527:              #line 269 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 528:              __ctrl = new System.Web.UI.WebControls.ImageButton();
Line 529:              
Line 530:              #line default
Line 531:              #line hidden
Line 532:              this.Imagebutton1 = __ctrl;
Line 533:              
Line 534:              #line 269 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 535:              __ctrl.ID = "Imagebutton1";
Line 536:              
Line 537:              #line default
Line 538:              #line hidden
Line 539:              
Line 540:              #line 269 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 541:              __ctrl.ImageUrl = "images/main.jpg";
Line 542:              
Line 543:              #line default
Line 544:              #line hidden
Line 545:              
Line 546:              #line 269 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 547:              __ctrl.Click += new System.Web.UI.ImageClickEventHandler(this.MainMenu_Click);
Line 548:              
Line 549:              #line default
Line 550:              #line hidden
Line 551:              return __ctrl;
Line 552:          }
Line 553:          
Line 554:          private void __BuildControl__control2(System.Web.UI.WebControls.TableItemStyle __ctrl) {
Line 555:              
Line 556:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 557:              __ctrl.ForeColor = System.Drawing.Color.FromArgb(51, 0, 153);
Line 558:              
Line 559:              #line default
Line 560:              #line hidden
Line 561:              
Line 562:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 563:              __ctrl.BackColor = System.Drawing.Color.FromArgb(255, 255, 204);
Line 564:              
Line 565:              #line default
Line 566:              #line hidden
Line 567:          }
Line 568:          
Line 569:          private void __BuildControl__control3(System.Web.UI.WebControls.TableItemStyle __ctrl) {
Line 570:              
Line 571:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 572:              __ctrl.Font.Bold = true;
Line 573:              
Line 574:              #line default
Line 575:              #line hidden
Line 576:              
Line 577:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 578:              __ctrl.ForeColor = System.Drawing.Color.FromArgb(102, 51, 153);
Line 579:              
Line 580:              #line default
Line 581:              #line hidden
Line 582:              
Line 583:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 584:              __ctrl.BackColor = System.Drawing.Color.FromArgb(255, 204, 102);
Line 585:              
Line 586:              #line default
Line 587:              #line hidden
Line 588:          }
Line 589:          
Line 590:          private void __BuildControl__control4(System.Web.UI.WebControls.TableItemStyle __ctrl) {
Line 591:              
Line 592:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 593:              __ctrl.BackColor = System.Drawing.Color.PaleGoldenrod;
Line 594:              
Line 595:              #line default
Line 596:              #line hidden
Line 597:          }
Line 598:          
Line 599:          private void __BuildControl__control5(System.Web.UI.WebControls.TableItemStyle __ctrl) {
Line 600:              
Line 601:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 602:              __ctrl.BackColor = System.Drawing.Color.Beige;
Line 603:              
Line 604:              #line default
Line 605:              #line hidden
Line 606:          }
Line 607:          
Line 608:          private void __BuildControl__control6(System.Web.UI.WebControls.TableItemStyle __ctrl) {
Line 609:              
Line 610:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 611:              __ctrl.Font.Bold = true;
Line 612:              
Line 613:              #line default
Line 614:              #line hidden
Line 615:              
Line 616:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 617:              __ctrl.ForeColor = System.Drawing.Color.White;
Line 618:              
Line 619:              #line default
Line 620:              #line hidden
Line 621:              
Line 622:              #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 623:              __ctrl.BackColor = System.Drawing.Color.FromArgb(149, 72, 150);
Line 624:              
Line 625:              #line default
Line 626:              #line hidden
Line 627:          }
Line 628:          
Line 629:          private void __BuildControl__control8() {
Line 630:              System.Web.UI.WebControls.EditCommandColumn __ctrl;
Line 631:              
Line 632:              #line 290 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 633:              __ctrl = new System.Web.UI.WebControls.EditCommandColumn();
Line 634:              
Line 635:              #line default
Line 636:              #line hidden
Line 637:              this.__control8 = __ctrl;
Line 638:              
Line 639:              #line 290 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 640:              __ctrl.ButtonType = System.Web.UI.WebControls.ButtonColumnType.LinkButton;
Line 641:              
Line 642:              #line default
Line 643:              #line hidden
Line 644:              
Line 645:              #line 290 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 646:              __ctrl.UpdateText = "<img src=images/Ok.gif border=0 align=absmiddle alt=\'Save changes\'>";
Line 647:              
Line 648:              #line default
Line 649:              #line hidden
Line 650:              
Line 651:              #line 290 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 652:              __ctrl.CancelText = "<img src=images/Cancel.gif border=0 align=absmiddle alt=\'Cancel editing\'>";
Line 653:              
Line 654:              #line default
Line 655:              #line hidden
Line 656:              
Line 657:              #line 290 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 658:              __ctrl.EditText = "<img src=images/icn_edit.gif border=0 align=absmiddle alt=\'Edit this item\'>";
Line 659:              
Line 660:              #line default
Line 661:              #line hidden
Line 662:          }
Line 663:          
Line 664:          private System.Web.UI.Control __BuildControl__control11() {
Line 665:              System.Web.UI.WebControls.Label __ctrl;
Line 666:              
Line 667:              #line 295 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 668:              __ctrl = new System.Web.UI.WebControls.Label();
Line 669:              
Line 670:              #line default
Line 671:              #line hidden
Line 672:              this.__control11 = __ctrl;
Line 673:              
Line 674:              #line 295 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 675:              __ctrl.Font.Bold = true;
Line 676:              
Line 677:              #line default
Line 678:              #line hidden
Line 679:              
Line 680:              #line 295 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 681:              __ctrl.ID = "lblStoreID";
Line 682:              
Line 683:              #line default
Line 684:              #line hidden
Line 685:              
Line 686:              #line 295 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 687:              __ctrl.DataBinding += new System.EventHandler(this.__DataBind__control11);
Line 688:              
Line 689:              #line default
Line 690:              #line hidden
Line 691:              return __ctrl;
Line 692:          }
Line 693:          
Line 694:          public void __DataBind__control11(object sender, System.EventArgs e) {
Line 695:              System.Web.UI.WebControls.DataGridItem Container;
Line 696:              System.Web.UI.WebControls.Label target;
Line 697:              
Line 698:              #line 295 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 699:              target = ((System.Web.UI.WebControls.Label)(sender));
Line 700:              
Line 701:              #line default
Line 702:              #line hidden
Line 703:              
Line 704:              #line 295 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 705:              Container = ((System.Web.UI.WebControls.DataGridItem)(target.BindingContainer));
Line 706:              
Line 707:              #line default
Line 708:              #line hidden
Line 709:              
Line 710:              #line 295 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 711:              target.Text = System.Convert.ToString(Convert.ToString(DataBinder.Eval(Container.DataItem, "STOREID")));
Line 712:              
Line 713:              #line default
Line 714:              #line hidden
Line 715:          }
Line 716:          
Line 717:          private void __BuildControl__control10(System.Web.UI.Control __ctrl) {
Line 718:              System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
Line 719:              
Line 720:              #line 293 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 721:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 722:              
Line 723:              #line default
Line 724:              #line hidden
Line 725:              
Line 726:              #line 293 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 727:              this.__BuildControl__control11();
Line 728:              
Line 729:              #line default
Line 730:              #line hidden
Line 731:              
Line 732:              #line 293 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 733:              __parser.AddParsedSubObject(this.__control11);
Line 734:              
Line 735:              #line default
Line 736:              #line hidden
Line 737:              
Line 738:              #line 293 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 739:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 740:              
Line 741:              #line default
Line 742:              #line hidden
Line 743:          }
Line 744:          
Line 745:          private void __BuildControl__control9() {
Line 746:              System.Web.UI.WebControls.TemplateColumn __ctrl;
Line 747:              
Line 748:              #line 293 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 749:              __ctrl = new System.Web.UI.WebControls.TemplateColumn();
Line 750:              
Line 751:              #line default
Line 752:              #line hidden
Line 753:              this.__control9 = __ctrl;
Line 754:              
Line 755:              #line 293 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 756:              __ctrl.HeaderText = "StoreID";
Line 757:              
Line 758:              #line default
Line 759:              #line hidden
Line 760:              
Line 761:              #line 293 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 762:              __ctrl.ItemTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.__BuildControl__control10));
Line 763:              
Line 764:              #line default
Line 765:              #line hidden
Line 766:          }
Line 767:          
Line 768:          private System.Web.UI.Control __BuildControl__control14() {
Line 769:              System.Web.UI.WebControls.Label __ctrl;
Line 770:              
Line 771:              #line 301 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 772:              __ctrl = new System.Web.UI.WebControls.Label();
Line 773:              
Line 774:              #line default
Line 775:              #line hidden
Line 776:              this.__control14 = __ctrl;
Line 777:              
Line 778:              #line 301 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 779:              __ctrl.ID = "lblStore";
Line 780:              
Line 781:              #line default
Line 782:              #line hidden
Line 783:              
Line 784:              #line 301 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 785:              __ctrl.DataBinding += new System.EventHandler(this.__DataBind__control14);
Line 786:              
Line 787:              #line default
Line 788:              #line hidden
Line 789:              return __ctrl;
Line 790:          }
Line 791:          
Line 792:          public void __DataBind__control14(object sender, System.EventArgs e) {
Line 793:              System.Web.UI.WebControls.DataGridItem Container;
Line 794:              System.Web.UI.WebControls.Label target;
Line 795:              
Line 796:              #line 301 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 797:              target = ((System.Web.UI.WebControls.Label)(sender));
Line 798:              
Line 799:              #line default
Line 800:              #line hidden
Line 801:              
Line 802:              #line 301 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 803:              Container = ((System.Web.UI.WebControls.DataGridItem)(target.BindingContainer));
Line 804:              
Line 805:              #line default
Line 806:              #line hidden
Line 807:              
Line 808:              #line 301 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 809:              target.Text = System.Convert.ToString(Convert.ToString(DataBinder.Eval(Container.DataItem,"STORE")));
Line 810:              
Line 811:              #line default
Line 812:              #line hidden
Line 813:          }
Line 814:          
Line 815:          private void __BuildControl__control13(System.Web.UI.Control __ctrl) {
Line 816:              System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
Line 817:              
Line 818:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 819:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 820:              
Line 821:              #line default
Line 822:              #line hidden
Line 823:              
Line 824:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 825:              this.__BuildControl__control14();
Line 826:              
Line 827:              #line default
Line 828:              #line hidden
Line 829:              
Line 830:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 831:              __parser.AddParsedSubObject(this.__control14);
Line 832:              
Line 833:              #line default
Line 834:              #line hidden
Line 835:              
Line 836:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 837:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 838:              
Line 839:              #line default
Line 840:              #line hidden
Line 841:          }
Line 842:          
Line 843:          private System.Web.UI.Control __BuildControl__control16() {
Line 844:              System.Web.UI.WebControls.TextBox __ctrl;
Line 845:              
Line 846:              #line 305 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 847:              __ctrl = new System.Web.UI.WebControls.TextBox();
Line 848:              
Line 849:              #line default
Line 850:              #line hidden
Line 851:              this.__control16 = __ctrl;
Line 852:              
Line 853:              #line 305 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 854:              __ctrl.ID = "add_storeID";
Line 855:              
Line 856:              #line default
Line 857:              #line hidden
Line 858:              
Line 859:              #line 305 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 860:              __ctrl.Width = System.Web.UI.WebControls.Unit.Parse("150px", System.Globalization.CultureInfo.InvariantCulture);
Line 861:              
Line 862:              #line default
Line 863:              #line hidden
Line 864:              return __ctrl;
Line 865:          }
Line 866:          
Line 867:          private void __BuildControl__control15(System.Web.UI.Control __ctrl) {
Line 868:              System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
Line 869:              
Line 870:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 871:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 872:              
Line 873:              #line default
Line 874:              #line hidden
Line 875:              
Line 876:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 877:              this.__BuildControl__control16();
Line 878:              
Line 879:              #line default
Line 880:              #line hidden
Line 881:              
Line 882:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 883:              __parser.AddParsedSubObject(this.__control16);
Line 884:              
Line 885:              #line default
Line 886:              #line hidden
Line 887:              
Line 888:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 889:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 890:              
Line 891:              #line default
Line 892:              #line hidden
Line 893:          }
Line 894:          
Line 895:          private System.Web.UI.Control __BuildControl__control18() {
Line 896:              System.Web.UI.WebControls.TextBox __ctrl;
Line 897:              
Line 898:              #line 308 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 899:              __ctrl = new System.Web.UI.WebControls.TextBox();
Line 900:              
Line 901:              #line default
Line 902:              #line hidden
Line 903:              this.__control18 = __ctrl;
Line 904:              
Line 905:              #line 308 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 906:              __ctrl.ID = "editStores";
Line 907:              
Line 908:              #line default
Line 909:              #line hidden
Line 910:              
Line 911:              #line 308 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 912:              __ctrl.Width = System.Web.UI.WebControls.Unit.Parse("150px", System.Globalization.CultureInfo.InvariantCulture);
Line 913:              
Line 914:              #line default
Line 915:              #line hidden
Line 916:              
Line 917:              #line 308 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 918:              __ctrl.DataBinding += new System.EventHandler(this.__DataBind__control18);
Line 919:              
Line 920:              #line default
Line 921:              #line hidden
Line 922:              return __ctrl;
Line 923:          }
Line 924:          
Line 925:          public void __DataBind__control18(object sender, System.EventArgs e) {
Line 926:              System.Web.UI.WebControls.DataGridItem Container;
Line 927:              System.Web.UI.WebControls.TextBox target;
Line 928:              
Line 929:              #line 308 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 930:              target = ((System.Web.UI.WebControls.TextBox)(sender));
Line 931:              
Line 932:              #line default
Line 933:              #line hidden
Line 934:              
Line 935:              #line 308 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 936:              Container = ((System.Web.UI.WebControls.DataGridItem)(target.BindingContainer));
Line 937:              
Line 938:              #line default
Line 939:              #line hidden
Line 940:              
Line 941:              #line 308 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 942:              target.Text = System.Convert.ToString(Convert.ToString(DataBinder.Eval(Container.DataItem,"STORE")));
Line 943:              
Line 944:              #line default
Line 945:              #line hidden
Line 946:          }
Line 947:          
Line 948:          private void __BuildControl__control17(System.Web.UI.Control __ctrl) {
Line 949:              System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
Line 950:              
Line 951:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 952:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 953:              
Line 954:              #line default
Line 955:              #line hidden
Line 956:              
Line 957:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 958:              this.__BuildControl__control18();
Line 959:              
Line 960:              #line default
Line 961:              #line hidden
Line 962:              
Line 963:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 964:              __parser.AddParsedSubObject(this.__control18);
Line 965:              
Line 966:              #line default
Line 967:              #line hidden
Line 968:              
Line 969:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 970:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 971:              
Line 972:              #line default
Line 973:              #line hidden
Line 974:          }
Line 975:          
Line 976:          private void __BuildControl__control12() {
Line 977:              System.Web.UI.WebControls.TemplateColumn __ctrl;
Line 978:              
Line 979:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 980:              __ctrl = new System.Web.UI.WebControls.TemplateColumn();
Line 981:              
Line 982:              #line default
Line 983:              #line hidden
Line 984:              this.__control12 = __ctrl;
Line 985:              
Line 986:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 987:              __ctrl.HeaderText = "Store Name";
Line 988:              
Line 989:              #line default
Line 990:              #line hidden
Line 991:              
Line 992:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 993:              __ctrl.ItemTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.__BuildControl__control13));
Line 994:              
Line 995:              #line default
Line 996:              #line hidden
Line 997:              
Line 998:              #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 999:              __ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.__BuildControl__control15));
Line 1000:            
Line 1001:             #line default
Line 1002:             #line hidden
Line 1003:            
Line 1004:             #line 299 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1005:             __ctrl.EditItemTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.__BuildControl__control17));
Line 1006:            
Line 1007:             #line default
Line 1008:             #line hidden
Line 1009:         }
Line 1010:        
Line 1011:         private System.Web.UI.Control __BuildControl__control21() {
Line 1012:             System.Web.UI.WebControls.ImageButton __ctrl;
Line 1013:            
Line 1014:             #line 314 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1015:             __ctrl = new System.Web.UI.WebControls.ImageButton();
Line 1016:            
Line 1017:             #line default
Line 1018:             #line hidden
Line 1019:             this.__control21 = __ctrl;
Line 1020:            
Line 1021:             #line 314 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1022:             __ctrl.CommandName = "Delete";
Line 1023:            
Line 1024:             #line default
Line 1025:             #line hidden
Line 1026:            
Line 1027:             #line 314 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1028:             __ctrl.ID = "btnDel";
Line 1029:            
Line 1030:             #line default
Line 1031:             #line hidden
Line 1032:            
Line 1033:             #line 314 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1034:             ((System.Web.UI.IAttributeAccessor)(__ctrl)).SetAttribute("alt", "Delete this item?");
Line 1035:            
Line 1036:             #line default
Line 1037:             #line hidden
Line 1038:            
Line 1039:             #line 314 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1040:             __ctrl.ImageUrl = "images/icn_del.gif";
Line 1041:            
Line 1042:             #line default
Line 1043:             #line hidden
Line 1044:             return __ctrl;
Line 1045:         }
Line 1046:        
Line 1047:         private void __BuildControl__control20(System.Web.UI.Control __ctrl) {
Line 1048:             System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
Line 1049:            
Line 1050:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1051:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 1052:            
Line 1053:             #line default
Line 1054:             #line hidden
Line 1055:            
Line 1056:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1057:             this.__BuildControl__control21();
Line 1058:            
Line 1059:             #line default
Line 1060:             #line hidden
Line 1061:            
Line 1062:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1063:             __parser.AddParsedSubObject(this.__control21);
Line 1064:            
Line 1065:             #line default
Line 1066:             #line hidden
Line 1067:            
Line 1068:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1069:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 1070:            
Line 1071:             #line default
Line 1072:             #line hidden
Line 1073:         }
Line 1074:        
Line 1075:         private System.Web.UI.Control __BuildControl__control23() {
Line 1076:             System.Web.UI.WebControls.ImageButton __ctrl;
Line 1077:            
Line 1078:             #line 318 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1079:             __ctrl = new System.Web.UI.WebControls.ImageButton();
Line 1080:            
Line 1081:             #line default
Line 1082:             #line hidden
Line 1083:             this.__control23 = __ctrl;
Line 1084:            
Line 1085:             #line 318 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1086:             __ctrl.CommandName = "Insert";
Line 1087:            
Line 1088:             #line default
Line 1089:             #line hidden
Line 1090:            
Line 1091:             #line 318 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1092:             __ctrl.ID = "btnAdd";
Line 1093:            
Line 1094:             #line default
Line 1095:             #line hidden
Line 1096:            
Line 1097:             #line 318 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1098:             ((System.Web.UI.IAttributeAccessor)(__ctrl)).SetAttribute("alt", "Add new item");
Line 1099:            
Line 1100:             #line default
Line 1101:             #line hidden
Line 1102:            
Line 1103:             #line 318 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1104:             __ctrl.ImageUrl = "images/icn_add.gif";
Line 1105:            
Line 1106:             #line default
Line 1107:             #line hidden
Line 1108:             return __ctrl;
Line 1109:         }
Line 1110:        
Line 1111:         private void __BuildControl__control22(System.Web.UI.Control __ctrl) {
Line 1112:             System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
Line 1113:            
Line 1114:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1115:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 1116:            
Line 1117:             #line default
Line 1118:             #line hidden
Line 1119:            
Line 1120:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1121:             this.__BuildControl__control23();
Line 1122:            
Line 1123:             #line default
Line 1124:             #line hidden
Line 1125:            
Line 1126:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1127:             __parser.AddParsedSubObject(this.__control23);
Line 1128:            
Line 1129:             #line default
Line 1130:             #line hidden
Line 1131:            
Line 1132:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1133:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n"));
Line 1134:            
Line 1135:             #line default
Line 1136:             #line hidden
Line 1137:         }
Line 1138:        
Line 1139:         private void __BuildControl__control19() {
Line 1140:             System.Web.UI.WebControls.TemplateColumn __ctrl;
Line 1141:            
Line 1142:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1143:             __ctrl = new System.Web.UI.WebControls.TemplateColumn();
Line 1144:            
Line 1145:             #line default
Line 1146:             #line hidden
Line 1147:             this.__control19 = __ctrl;
Line 1148:            
Line 1149:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1150:             __ctrl.HeaderText = "Delete";
Line 1151:            
Line 1152:             #line default
Line 1153:             #line hidden
Line 1154:            
Line 1155:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1156:             __ctrl.ItemTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.__BuildControl__control20));
Line 1157:            
Line 1158:             #line default
Line 1159:             #line hidden
Line 1160:            
Line 1161:             #line 312 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1162:             __ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.__BuildControl__control22));
Line 1163:            
Line 1164:             #line default
Line 1165:             #line hidden
Line 1166:         }
Line 1167:        
Line 1168:         private void __BuildControl__control7(System.Web.UI.WebControls.DataGridColumnCollection __ctrl) {
Line 1169:            
Line 1170:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1171:             this.__BuildControl__control8();
Line 1172:            
Line 1173:             #line default
Line 1174:             #line hidden
Line 1175:            
Line 1176:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1177:             __ctrl.Add(this.__control8);
Line 1178:            
Line 1179:             #line default
Line 1180:             #line hidden
Line 1181:            
Line 1182:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1183:             this.__BuildControl__control9();
Line 1184:            
Line 1185:             #line default
Line 1186:             #line hidden
Line 1187:            
Line 1188:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1189:             __ctrl.Add(this.__control9);
Line 1190:            
Line 1191:             #line default
Line 1192:             #line hidden
Line 1193:            
Line 1194:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1195:             this.__BuildControl__control12();
Line 1196:            
Line 1197:             #line default
Line 1198:             #line hidden
Line 1199:            
Line 1200:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1201:             __ctrl.Add(this.__control12);
Line 1202:            
Line 1203:             #line default
Line 1204:             #line hidden
Line 1205:            
Line 1206:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1207:             this.__BuildControl__control19();
Line 1208:            
Line 1209:             #line default
Line 1210:             #line hidden
Line 1211:            
Line 1212:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1213:             __ctrl.Add(this.__control19);
Line 1214:            
Line 1215:             #line default
Line 1216:             #line hidden
Line 1217:         }
Line 1218:        
Line 1219:         private void __BuildControl__control24(System.Web.UI.WebControls.DataGridPagerStyle __ctrl) {
Line 1220:            
Line 1221:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1222:             __ctrl.HorizontalAlign = System.Web.UI.WebControls.HorizontalAlign.Center;
Line 1223:            
Line 1224:             #line default
Line 1225:             #line hidden
Line 1226:            
Line 1227:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1228:             __ctrl.ForeColor = System.Drawing.Color.FromArgb(51, 0, 153);
Line 1229:            
Line 1230:             #line default
Line 1231:             #line hidden
Line 1232:            
Line 1233:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1234:             __ctrl.BackColor = System.Drawing.Color.FromArgb(255, 255, 204);
Line 1235:            
Line 1236:             #line default
Line 1237:             #line hidden
Line 1238:         }
Line 1239:        
Line 1240:         private System.Web.UI.Control __BuildControlDataGridUserManagementID() {
Line 1241:             System.Web.UI.WebControls.DataGrid __ctrl;
Line 1242:            
Line 1243:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1244:             __ctrl = new System.Web.UI.WebControls.DataGrid();
Line 1245:            
Line 1246:             #line default
Line 1247:             #line hidden
Line 1248:             this.DataGridUserManagementID = __ctrl;
Line 1249:            
Line 1250:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1251:             __ctrl.ID = "DataGridUserManagementID";
Line 1252:            
Line 1253:             #line default
Line 1254:             #line hidden
Line 1255:            
Line 1256:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1257:             __ctrl.BorderWidth = System.Web.UI.WebControls.Unit.Parse("3px", System.Globalization.CultureInfo.InvariantCulture);
Line 1258:            
Line 1259:             #line default
Line 1260:             #line hidden
Line 1261:            
Line 1262:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1263:             __ctrl.BorderColor = System.Drawing.Color.FromArgb(204, 204, 153);
Line 1264:            
Line 1265:             #line default
Line 1266:             #line hidden
Line 1267:            
Line 1268:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1269:             __ctrl.PagerStyle.HorizontalAlign = System.Web.UI.WebControls.HorizontalAlign.Right;
Line 1270:            
Line 1271:             #line default
Line 1272:             #line hidden
Line 1273:            
Line 1274:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1275:             __ctrl.Width = System.Web.UI.WebControls.Unit.Parse("449px", System.Globalization.CultureInfo.InvariantCulture);
Line 1276:            
Line 1277:             #line default
Line 1278:             #line hidden
Line 1279:            
Line 1280:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1281:             __ctrl.Font.Names = new string[] {
Line 1282:                     "Verdana"};
Line 1283:            
Line 1284:             #line default
Line 1285:             #line hidden
Line 1286:            
Line 1287:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1288:             __ctrl.Font.Size = System.Web.UI.WebControls.FontUnit.Parse("XX-Small", System.Globalization.CultureInfo.InvariantCulture);
Line 1289:            
Line 1290:             #line default
Line 1291:             #line hidden
Line 1292:            
Line 1293:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1294:             __ctrl.BorderStyle = System.Web.UI.WebControls.BorderStyle.Outset;
Line 1295:            
Line 1296:             #line default
Line 1297:             #line hidden
Line 1298:            
Line 1299:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1300:             __ctrl.GridLines = System.Web.UI.WebControls.GridLines.None;
Line 1301:            
Line 1302:             #line default
Line 1303:             #line hidden
Line 1304:            
Line 1305:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1306:             __ctrl.AutoGenerateColumns = false;
Line 1307:            
Line 1308:             #line default
Line 1309:             #line hidden
Line 1310:            
Line 1311:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1312:             __ctrl.ShowFooter = true;
Line 1313:            
Line 1314:             #line default
Line 1315:             #line hidden
Line 1316:            
Line 1317:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1318:             __ctrl.AllowCustomPaging = true;
Line 1319:            
Line 1320:             #line default
Line 1321:             #line hidden
Line 1322:            
Line 1323:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1324:             __ctrl.AllowPaging = true;
Line 1325:            
Line 1326:             #line default
Line 1327:             #line hidden
Line 1328:            
Line 1329:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1330:             this.__BuildControl__control2(__ctrl.FooterStyle);
Line 1331:            
Line 1332:             #line default
Line 1333:             #line hidden
Line 1334:            
Line 1335:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1336:             this.__BuildControl__control3(__ctrl.SelectedItemStyle);
Line 1337:            
Line 1338:             #line default
Line 1339:             #line hidden
Line 1340:            
Line 1341:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1342:             this.__BuildControl__control4(__ctrl.AlternatingItemStyle);
Line 1343:            
Line 1344:             #line default
Line 1345:             #line hidden
Line 1346:            
Line 1347:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1348:             this.__BuildControl__control5(__ctrl.ItemStyle);
Line 1349:            
Line 1350:             #line default
Line 1351:             #line hidden
Line 1352:            
Line 1353:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1354:             this.__BuildControl__control6(__ctrl.HeaderStyle);
Line 1355:            
Line 1356:             #line default
Line 1357:             #line hidden
Line 1358:            
Line 1359:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1360:             this.__BuildControl__control7(__ctrl.Columns);
Line 1361:            
Line 1362:             #line default
Line 1363:             #line hidden
Line 1364:            
Line 1365:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1366:             this.__BuildControl__control24(__ctrl.PagerStyle);
Line 1367:            
Line 1368:             #line default
Line 1369:             #line hidden
Line 1370:            
Line 1371:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1372:             __ctrl.ItemCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.DataGridUserManagementID_ItemCommand);
Line 1373:            
Line 1374:             #line default
Line 1375:             #line hidden
Line 1376:            
Line 1377:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1378:             __ctrl.ItemCreated += new System.Web.UI.WebControls.DataGridItemEventHandler(this.DataGridUserManagementID_ItemCreated);
Line 1379:            
Line 1380:             #line default
Line 1381:             #line hidden
Line 1382:            
Line 1383:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1384:             __ctrl.EditCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.DataGridUserManagementID_Edit);
Line 1385:            
Line 1386:             #line default
Line 1387:             #line hidden
Line 1388:            
Line 1389:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1390:             __ctrl.ItemDataBound += new System.Web.UI.WebControls.DataGridItemEventHandler(this.DataGridUserManagementID_ItemDataBound);
Line 1391:            
Line 1392:             #line default
Line 1393:             #line hidden
Line 1394:            
Line 1395:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1396:             __ctrl.CancelCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.DataGridUserManagementID_Cancel);
Line 1397:            
Line 1398:             #line default
Line 1399:             #line hidden
Line 1400:            
Line 1401:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1402:             __ctrl.UpdateCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.DataGridUserManagementID_Update);
Line 1403:            
Line 1404:             #line default
Line 1405:             #line hidden
Line 1406:            
Line 1407:             #line 277 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1408:             __ctrl.DeleteCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.DataGridUserManagementID_Delete);
Line 1409:            
Line 1410:             #line default
Line 1411:             #line hidden
Line 1412:             return __ctrl;
Line 1413:         }
Line 1414:        
Line 1415:         private System.Web.UI.Control __BuildControlLogout1() {
Line 1416:             ASP.logout_ascx __ctrl;
Line 1417:            
Line 1418:             #line 325 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1419:             __ctrl = new ASP.logout_ascx();
Line 1420:            
Line 1421:             #line default
Line 1422:             #line hidden
Line 1423:             this.Logout1 = __ctrl;
Line 1424:            
Line 1425:             #line 325 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1426:             this.Logout1.InitializeAsUserControl(this.Page);
Line 1427:            
Line 1428:             #line default
Line 1429:             #line hidden
Line 1430:            
Line 1431:             #line 325 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1432:             __ctrl.ID = "Logout1";
Line 1433:            
Line 1434:             #line default
Line 1435:             #line hidden
Line 1436:             return __ctrl;
Line 1437:         }
Line 1438:        
Line 1439:         private System.Web.UI.Control __BuildControlfooter() {
Line 1440:             ASP.footer_ascx __ctrl;
Line 1441:            
Line 1442:             #line 327 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1443:             __ctrl = new ASP.footer_ascx();
Line 1444:            
Line 1445:             #line default
Line 1446:             #line hidden
Line 1447:             this.footer = __ctrl;
Line 1448:            
Line 1449:             #line 327 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1450:             this.footer.InitializeAsUserControl(this.Page);
Line 1451:            
Line 1452:             #line default
Line 1453:             #line hidden
Line 1454:            
Line 1455:             #line 327 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1456:             __ctrl.ID = "footer";
Line 1457:            
Line 1458:             #line default
Line 1459:             #line hidden
Line 1460:             return __ctrl;
Line 1461:         }
Line 1462:        
Line 1463:         private System.Web.UI.Control __BuildControlform1() {
Line 1464:             System.Web.UI.HtmlControls.HtmlForm __ctrl;
Line 1465:            
Line 1466:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1467:             __ctrl = new System.Web.UI.HtmlControls.HtmlForm();
Line 1468:            
Line 1469:             #line default
Line 1470:             #line hidden
Line 1471:             this.form1 = __ctrl;
Line 1472:            
Line 1473:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1474:             __ctrl.ID = "form1";
Line 1475:            
Line 1476:             #line default
Line 1477:             #line hidden
Line 1478:             System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
Line 1479:            
Line 1480:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1481:             __parser.AddParsedSubObject(this.CreateResourceBasedLiteralControl(0, 283, true));
Line 1482:            
Line 1483:             #line default
Line 1484:             #line hidden
Line 1485:            
Line 1486:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1487:             this.__BuildControlImagebutton1();
Line 1488:            
Line 1489:             #line default
Line 1490:             #line hidden
Line 1491:            
Line 1492:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1493:             __parser.AddParsedSubObject(this.Imagebutton1);
Line 1494:            
Line 1495:             #line default
Line 1496:             #line hidden
Line 1497:            
Line 1498:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1499:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("<BR>\r\n<BR>\r\n</P>\r\n</TD>\r\n<TD width=\"702\" height=\"29\"></TD>\r\n</TR>\r\n<TR vAlign=\"to" +
Line 1500: "p\">\r\n<TD width=\"368\" height=\"272\"></TD>\r\n<TD width=\"575\" height=\"272\">"));
Line 1501:            
Line 1502:             #line default
Line 1503:             #line hidden
Line 1504:            
Line 1505:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1506:             this.__BuildControlDataGridUserManagementID();
Line 1507:            
Line 1508:             #line default
Line 1509:             #line hidden
Line 1510:            
Line 1511:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1512:             __parser.AddParsedSubObject(this.DataGridUserManagementID);
Line 1513:            
Line 1514:             #line default
Line 1515:             #line hidden
Line 1516:            
Line 1517:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1518:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n<P align=\"center\">\r\n"));
Line 1519:            
Line 1520:             #line default
Line 1521:             #line hidden
Line 1522:            
Line 1523:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1524:             this.__BuildControlLogout1();
Line 1525:            
Line 1526:             #line default
Line 1527:             #line hidden
Line 1528:            
Line 1529:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1530:             __parser.AddParsedSubObject(this.Logout1);
Line 1531:            
Line 1532:             #line default
Line 1533:             #line hidden
Line 1534:            
Line 1535:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1536:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("<BR>\r\n<BR>\r\n"));
Line 1537:            
Line 1538:             #line default
Line 1539:             #line hidden
Line 1540:            
Line 1541:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1542:             this.__BuildControlfooter();
Line 1543:            
Line 1544:             #line default
Line 1545:             #line hidden
Line 1546:            
Line 1547:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1548:             __parser.AddParsedSubObject(this.footer);
Line 1549:            
Line 1550:             #line default
Line 1551:             #line hidden
Line 1552:            
Line 1553:             #line 262 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1554:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("</P>\r\n</TD>\r\n<TD height=\"272\"></TD>\r\n</TR>\r\n</TABLE>\r\n"));
Line 1555:            
Line 1556:             #line default
Line 1557:             #line hidden
Line 1558:             return __ctrl;
Line 1559:         }
Line 1560:        
Line 1561:         private void __BuildControlTree(System.Web.UI.Control __ctrl) {
Line 1562:             System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
Line 1563:            
Line 1564:             #line 1 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1565:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n<HTML>\r\n<HEAD>\r\n<title>Users Interface to Managing Adminitrators</title>\r\n<meta" +
Line 1566: " content=\"True\" name=\"vs_snapToGrid\">\r\n"));
Line 1567:            
Line 1568:             #line default
Line 1569:             #line hidden
Line 1570:            
Line 1571:             #line 1 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1572:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n</HEAD>\r\n<body bgColor=\"#fef9e9\" leftMargin=\"0\" background=\"images/bg.gif\" topM" +
Line 1573: "argin=\"0\" marginwidth=\"0\"\r\n\t\tmarginheigh=\"0\">\r\n"));
Line 1574:            
Line 1575:             #line default
Line 1576:             #line hidden
Line 1577:            
Line 1578:             #line 1 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1579:             this.__BuildControlheader();
Line 1580:            
Line 1581:             #line default
Line 1582:             #line hidden
Line 1583:            
Line 1584:             #line 1 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1585:             __parser.AddParsedSubObject(this.header);
Line 1586:            
Line 1587:             #line default
Line 1588:             #line hidden
Line 1589:            
Line 1590:             #line 1 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1591:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n<center>\r\n"));
Line 1592:            
Line 1593:             #line default
Line 1594:             #line hidden
Line 1595:            
Line 1596:             #line 1 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1597:             this.__BuildControlform1();
Line 1598:            
Line 1599:             #line default
Line 1600:             #line hidden
Line 1601:            
Line 1602:             #line 1 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1603:             __parser.AddParsedSubObject(this.form1);
Line 1604:            
Line 1605:             #line default
Line 1606:             #line hidden
Line 1607:            
Line 1608:             #line 1 "D:\Inetpub\wwwroot\MSPOS\Stores.aspx"
Line 1609:             __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n</center> <!-- Include start of footer ----------------------------------------" +
Line 1610: "--------> <!--------------------------------------------------------------------" +
Line 1611: "------->\r\n</body>\r\n</HTML>\r\n"));
Line 1612:            
Line 1613:             #line default
Line 1614:             #line hidden
Line 1615:         }
Line 1616:        
Line 1617:         protected override void FrameworkInitialize() {
Line 1618:             SetStringResourcePointer(ASP.Stores_aspx.__stringResource, 283);
Line 1619:             this.__BuildControlTree(this);
Line 1620:             this.FileDependencies = ASP.Stores_aspx.__fileDependencies;
Line 1621:             this.EnableViewStateMac = true;
Line 1622:             this.Request.ValidateInput();
Line 1623:         }
Line 1624:        
Line 1625:         public override int GetTypeHashCode() {
Line 1626:             return 323424816;
Line 1627:         }
Line 1628:     }
Line 1629: }
Line 1630:
 




--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
Avatar of girish_infy
girish_infy

Try giving Read+Execute permission to the Oracle home including the sub-directories.

This should resolve the problem.