Hi,
in my reqirement, I have 2 pages in which the first page is known as: Contract Management.aspx.
In Contract management.aspx, I have a search panel that allows user to input search criteria and click on the search btn. Once the search btn is activated, a grid view called gvContract will be populated with data. In the Contract ID, it contains a list of id that are hyperlinked.Example: 8.3.2.5, 8.3.2.6 -->Hyperlinked.
Once user clicks on the hyperlink, they will be naviagte to another page to view specific details tied to each individual contract id. This page is known as: ContractThreeGridView.aspx. In these page, it contains Critical terms grid view, uploaded documents grid view and checklist grid view. These 3 grid views allows user to insert,update or delete records.
This is my business logic for the gvContract:
protected void
gvContract_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header)
{
GridView header = (GridView)sender;
GridViewRow gvr = new GridViewRow(0, 0, DataControlRowType.Header, DataControlRowState.Insert);
TableCell tCell = new TableCell();
tCell.Text = "Contract
Management";
tCell.ColumnSpan = 14;
tCell.HorizontalAlign = HorizontalAlign.Left;
tCell.CssClass = "trWithBorder";
gvr.Cells.Add(tCell);
// Add the Merged
TableCell to the GridView Header
Table tbl = gvContract.Controls[0]
as Table;
if (tbl != null)
{
tbl.Rows.AddAt(0, gvr);
}
}
if (e.Row.RowType.Equals(DataControlRowType.DataRow))
{
DataRowView objDRV = (DataRowView)e.Row.DataItem;
HyperLink objHlink = (HyperLink)e.Row.FindControl("hlContract");
string strPagePath = "";
strPagePath = "http://localhost:1973/VRM_WebSite/app/vrm/ContractThreeGridView.aspx?ContractId=" + objDRV["ContractId"].ToString();
objHlink.NavigateUrl = strPagePath;
objHlink.Target = "_self";
}
|
In my seond page, i have defined:
protected void
Page_Load(object sender, EventArgs e)
{
//string strContractId
= Request.QueryString["ContractId"].ToString();
//string cid =
Convert.ToString(Request.QueryString["ContractId"]);
//if (cid != null)
//{
//
Response.Write("Fetch Records on the basis of ContracID " + cid);
//}
if (!IsPostBack)
{
//Set the
sortExpression
ViewState[this.ToString() + "_SortExpression1"]
= "Terms";
ViewState[this.ToString() + "_SortDirection1"]
= "ASC";
//Set the
sortExpression
ViewState[this.ToString() + "_SortExpression2"]
= "FileName";
ViewState[this.ToString() + "_SortDirection2"]
= "ASC";
//Set the
sortExpression
ViewState[this.ToString() + "_SortExpression3"]
= "Item";
ViewState[this.ToString() + "_SortDirection3"]
= "ASC";
//populate the
criticalterms datatable
DataTable tmpdt =
vrmdb.Get_CriticalTerms().Tables[0];
tmpdt.PrimaryKey = new DataColumn[] { tmpdt.Columns[0]
};
ViewState[viewStateGVName] = tmpdt;
//populate the
uploadeddocuments datatable
DataTable tmpdtt =
vrmdb.Get_UploadedDocuments().Tables[0];
tmpdtt = new DataTable();
tmpdtt = vrmdb.Get_UploadedDocuments().Tables[0];
tmpdtt.PrimaryKey = new DataColumn[] { tmpdtt.Columns[0]
};
ViewState[viewStateGVUDName] = tmpdtt;
//populate the
uploadeddocuments datatable
DataTable tmpCdt =
vrmdb.Get_Checklist().Tables[0];
tmpCdt = new DataTable();
tmpCdt = vrmdb.Get_Checklist().Tables[0];
tmpCdt.PrimaryKey = new DataColumn[] { tmpCdt.Columns[0]
};
ViewState[viewStateGVCLName] = tmpCdt;
BindGrid();
BindGrid1();
BindGrid2();
string strContractId =
Request.QueryString["ContractId"].ToString(); //This is one
is to get the contract id parmater
}
}
|
When I perform an insert req for one of the grid view and click on the Add New link btn defined at the footer, there is an error indicating:
Server Error in '/VRM_WebSite' Application.
Object reference not set to an instance of an object.
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: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
Line 83: BindGrid1();
Line 84: BindGrid2();
Line 85: string strContractId = Request.QueryString["ContractId"].ToString();
Line 86:
Line 87: |
Source File: c:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx.cs Line: 85
I am not sure of how to resolve it.Thanks!
Suthish NairPosted Feb 16, 2011, 2:54 AM
Suthish NairPosted Feb 14, 2011, 10:09 AM
Madhu KPosted Feb 14, 2011, 7:12 AM
Clearly tells that ContractId isn't declared as string. and from your code I observed that you did not used the query string anywhere else. Anyhow just declare ContractId as string.
Amit ChoudharyPosted Feb 14, 2011, 7:07 AM
Everything seems to be fine in Code ... Try Rebuild your solution to get the fresh assemblies of updated code.
Becky BloomwoodPosted Feb 14, 2011, 4:33 AM
I added in he code thatyou gave me, but there is still error:
protected void Page_Load(object sender, EventArgs e)
{
//string strContractId = Request.QueryString["ContractId"].ToString();
//string cid = Convert.ToString(Request.QueryString["ContractId"]);
//if (cid != null)
//{
// Response.Write("Fetch Records on the basis of ContracID " + cid);
//}
if(Request.QueryString["ContractId"]!=null)
{
ContractId = Request.QueryString["ContractId"].ToString();
}
if (!IsPostBack)
{
//Set the sortExpression
ViewState[this.ToString() + "_SortExpression1"] = "Terms";
ViewState[this.ToString() + "_SortDirection1"] = "ASC";
//Set the sortExpression
ViewState[this.ToString() + "_SortExpression2"] = "FileName";
ViewState[this.ToString() + "_SortDirection2"] = "ASC";
//Set the sortExpression
ViewState[this.ToString() + "_SortExpression3"] = "Item";
ViewState[this.ToString() + "_SortDirection3"] = "ASC";
//populate the criticalterms datatable
DataTable tmpdt = vrmdb.Get_CriticalTerms().Tables[0];
//tmpdt = new DataTable();
tmpdt.PrimaryKey = new DataColumn[] { tmpdt.Columns[0] };
ViewState[viewStateGVName] = tmpdt;
//populate the uploadeddocuments datatable
DataTable tmpdtt = vrmdb.Get_UploadedDocuments().Tables[0];
tmpdtt = new DataTable();
tmpdtt = vrmdb.Get_UploadedDocuments().Tables[0];
tmpdtt.PrimaryKey = new DataColumn[] { tmpdtt.Columns[0] };
ViewState[viewStateGVUDName] = tmpdtt;
//populate the uploadeddocuments datatable
DataTable tmpCdt = vrmdb.Get_Checklist().Tables[0];
tmpCdt = new DataTable();
tmpCdt = vrmdb.Get_Checklist().Tables[0];
tmpCdt.PrimaryKey = new DataColumn[] { tmpCdt.Columns[0] };
ViewState[viewStateGVCLName] = tmpCdt;
BindGrid();
BindGrid1();
BindGrid2();
//string strContractId = Request.QueryString["ContractId"].ToString();
}
}
This is the error:
Server Error in '/VRM_WebSite' 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: CS0103: The name 'ContractId' does not exist in the current context
Source Error:
Line 36: if(Request.QueryString["ContractId"]!=null) Line 37: { Line 38: ContractId = Request.QueryString["ContractId"].ToString(); Line 39: } Line 40:Source File: c:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx.cs Line: 38
Line 1: #pragma checksum "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "60D5F683556282C68CD44B7BF026C857" Line 2: //------------------------------------------------------------------------------ Line 3: //
Line 4: // This code was generated by a tool.
Line 5: // Runtime Version:2.0.50727.4952
Line 6: //
Line 7: // Changes to this file may cause incorrect behavior and will be lost if
Line 8: // the code is regenerated.
Line 9: //
Line 10: //------------------------------------------------------------------------------
Line 11:
Line 12: namespace StarTrack {
Line 13:
Line 14:
Line 15: public partial class ContractThreeGridView : System.Web.SessionState.IRequiresSessionState {
Line 16:
Line 17:
Line 18: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 19: protected global::System.Web.UI.WebControls.GridView gvCriticalTerms;
Line 20:
Line 21: #line default
Line 22: #line hidden
Line 23:
Line 24:
Line 25: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 26: protected global::System.Web.UI.WebControls.GridView gvUploadedDocuments;
Line 27:
Line 28: #line default
Line 29: #line hidden
Line 30:
Line 31:
Line 32: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 33: protected global::System.Web.UI.WebControls.GridView gvChecklist;
Line 34:
Line 35: #line default
Line 36: #line hidden
Line 37:
Line 38: protected System.Web.Profile.DefaultProfile Profile {
Line 39: get {
Line 40: return ((System.Web.Profile.DefaultProfile)(this.Context.Profile));
Line 41: }
Line 42: }
Line 43:
Line 44: protected ASP.global_asax ApplicationInstance {
Line 45: get {
Line 46: return ((ASP.global_asax)(this.Context.ApplicationInstance));
Line 47: }
Line 48: }
Line 49: }
Line 50: }
Line 51: namespace ASP {
Line 52:
Line 53: #line 284 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 54: using System.Web.Security;
Line 55:
Line 56: #line default
Line 57: #line hidden
Line 58:
Line 59: #line 281 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 60: using System.Web;
Line 61:
Line 62: #line default
Line 63: #line hidden
Line 64:
Line 65: #line 283 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 66: using System.Web.SessionState;
Line 67:
Line 68: #line default
Line 69: #line hidden
Line 70:
Line 71: #line 279 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 72: using System.Text;
Line 73:
Line 74: #line default
Line 75: #line hidden
Line 76:
Line 77: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 78: using System.Web.UI.WebControls;
Line 79:
Line 80: #line default
Line 81: #line hidden
Line 82:
Line 83: #line 285 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 84: using System.Web.Profile;
Line 85:
Line 86: #line default
Line 87: #line hidden
Line 88:
Line 89: #line 276 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 90: using System.Collections;
Line 91:
Line 92: #line default
Line 93: #line hidden
Line 94:
Line 95: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 96: using System.Web.UI.WebControls.WebParts;
Line 97:
Line 98: #line default
Line 99: #line hidden
Line 100:
Line 101: #line 278 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 102: using System.Configuration;
Line 103:
Line 104: #line default
Line 105: #line hidden
Line 106:
Line 107: #line 275 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 108: using System;
Line 109:
Line 110: #line default
Line 111: #line hidden
Line 112:
Line 113: #line 1 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 114: using ASP;
Line 115:
Line 116: #line default
Line 117: #line hidden
Line 118:
Line 119: #line 282 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 120: using System.Web.Caching;
Line 121:
Line 122: #line default
Line 123: #line hidden
Line 124:
Line 125: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 126: using System.Web.UI;
Line 127:
Line 128: #line default
Line 129: #line hidden
Line 130:
Line 131: #line 277 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 132: using System.Collections.Specialized;
Line 133:
Line 134: #line default
Line 135: #line hidden
Line 136:
Line 137: #line 280 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 138: using System.Text.RegularExpressions;
Line 139:
Line 140: #line default
Line 141: #line hidden
Line 142:
Line 143: #line 289 "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\web.config"
Line 144: using System.Web.UI.HtmlControls;
Line 145:
Line 146: #line default
Line 147: #line hidden
Line 148:
Line 149:
Line 150: [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
Line 151: public class app_vrm_contractthreegridview_aspx : global::StarTrack.ContractThreeGridView, System.Web.IHttpHandler {
Line 152:
Line 153: private static bool @__initialized;
Line 154:
Line 155: private static object @__fileDependencies;
Line 156:
Line 157: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 158: public app_vrm_contractthreegridview_aspx() {
Line 159: string[] dependencies;
Line 160:
Line 161: #line 912304 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx.cs"
Line 162: ((global::System.Web.UI.Page)(this)).AppRelativeVirtualPath = "~/app/vrm/ContractThreeGridView.aspx";
Line 163:
Line 164: #line default
Line 165: #line hidden
Line 166: if ((global::ASP.app_vrm_contractthreegridview_aspx.@__initialized == false)) {
Line 167: dependencies = new string[4];
Line 168: dependencies[0] = "~/app/vrm/ContractThreeGridView.aspx";
Line 169: dependencies[1] = "~/common/VRMMasterPage.master";
Line 170: dependencies[2] = "~/common/VRMMasterPage.master.cs";
Line 171: dependencies[3] = "~/app/vrm/ContractThreeGridView.aspx.cs";
Line 172: global::ASP.app_vrm_contractthreegridview_aspx.@__fileDependencies = this.GetWrappedFileDependencies(dependencies);
Line 173: global::ASP.app_vrm_contractthreegridview_aspx.@__initialized = true;
Line 174: }
Line 175: this.Server.ScriptTimeout = 30000000;
Line 176: }
Line 177:
Line 178: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 179: private global::System.Web.UI.WebControls.CheckBox @__BuildControl__control5() {
Line 180: global::System.Web.UI.WebControls.CheckBox @__ctrl;
Line 181:
Line 182: #line 15 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 183: @__ctrl = new global::System.Web.UI.WebControls.CheckBox();
Line 184:
Line 185: #line default
Line 186: #line hidden
Line 187: @__ctrl.TemplateControl = this;
Line 188: @__ctrl.ApplyStyleSheetSkin(this);
Line 189:
Line 190: #line 15 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 191: @__ctrl.ID = "chkSelectAll";
Line 192:
Line 193: #line default
Line 194: #line hidden
Line 195:
Line 196: #line 15 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 197: @__ctrl.AutoPostBack = true;
Line 198:
Line 199: #line default
Line 200: #line hidden
Line 201:
Line 202: #line 15 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 203: @__ctrl.CheckedChanged += new System.EventHandler(this.chkSelectAll_CheckedChanged);
Line 204:
Line 205: #line default
Line 206: #line hidden
Line 207: return @__ctrl;
Line 208: }
Line 209:
Line 210: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 211: private void @__BuildControl__control4(System.Web.UI.Control @__ctrl) {
Line 212: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 213:
Line 214: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 215: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 216:
Line 217: #line default
Line 218: #line hidden
Line 219: global::System.Web.UI.WebControls.CheckBox @__ctrl1;
Line 220:
Line 221: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 222: @__ctrl1 = this.@__BuildControl__control5();
Line 223:
Line 224: #line default
Line 225: #line hidden
Line 226:
Line 227: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 228: @__parser.AddParsedSubObject(@__ctrl1);
Line 229:
Line 230: #line default
Line 231: #line hidden
Line 232:
Line 233: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 234: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 235:
Line 236: #line default
Line 237: #line hidden
Line 238: }
Line 239:
Line 240: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 241: private global::System.Web.UI.WebControls.CheckBox @__BuildControl__control7() {
Line 242: global::System.Web.UI.WebControls.CheckBox @__ctrl;
Line 243:
Line 244: #line 18 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 245: @__ctrl = new global::System.Web.UI.WebControls.CheckBox();
Line 246:
Line 247: #line default
Line 248: #line hidden
Line 249: @__ctrl.TemplateControl = this;
Line 250: @__ctrl.ApplyStyleSheetSkin(this);
Line 251:
Line 252: #line 18 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 253: @__ctrl.ID = "selected";
Line 254:
Line 255: #line default
Line 256: #line hidden
Line 257: return @__ctrl;
Line 258: }
Line 259:
Line 260: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 261: private void @__BuildControl__control6(System.Web.UI.Control @__ctrl) {
Line 262: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 263:
Line 264: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 265: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 266:
Line 267: #line default
Line 268: #line hidden
Line 269: global::System.Web.UI.WebControls.CheckBox @__ctrl1;
Line 270:
Line 271: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 272: @__ctrl1 = this.@__BuildControl__control7();
Line 273:
Line 274: #line default
Line 275: #line hidden
Line 276:
Line 277: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 278: @__parser.AddParsedSubObject(@__ctrl1);
Line 279:
Line 280: #line default
Line 281: #line hidden
Line 282:
Line 283: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 284: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 285:
Line 286: #line default
Line 287: #line hidden
Line 288: }
Line 289:
Line 290: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 291: private void @__BuildControl__control8(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 292:
Line 293: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 294: @__ctrl.CssClass = "headerWithBorder";
Line 295:
Line 296: #line default
Line 297: #line hidden
Line 298: }
Line 299:
Line 300: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 301: private void @__BuildControl__control9(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 302:
Line 303: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 304: @__ctrl.CssClass = "trWithBorder";
Line 305:
Line 306: #line default
Line 307: #line hidden
Line 308: }
Line 309:
Line 310: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 311: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control3() {
Line 312: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 313:
Line 314: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 315: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 316:
Line 317: #line default
Line 318: #line hidden
Line 319:
Line 320: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 321: @__ctrl.HeaderTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control4));
Line 322:
Line 323: #line default
Line 324: #line hidden
Line 325:
Line 326: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 327: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control6), null);
Line 328:
Line 329: #line default
Line 330: #line hidden
Line 331:
Line 332: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 333: this.@__BuildControl__control8(@__ctrl.HeaderStyle);
Line 334:
Line 335: #line default
Line 336: #line hidden
Line 337:
Line 338: #line 13 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 339: this.@__BuildControl__control9(@__ctrl.ItemStyle);
Line 340:
Line 341: #line default
Line 342: #line hidden
Line 343: return @__ctrl;
Line 344: }
Line 345:
Line 346: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 347: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control12() {
Line 348: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 349:
Line 350: #line 25 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 351: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 352:
Line 353: #line default
Line 354: #line hidden
Line 355: @__ctrl.TemplateControl = this;
Line 356: @__ctrl.ApplyStyleSheetSkin(this);
Line 357:
Line 358: #line 25 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 359: @__ctrl.ID = "UpdateLinkBtn";
Line 360:
Line 361: #line default
Line 362: #line hidden
Line 363:
Line 364: #line 25 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 365: @__ctrl.CausesValidation = true;
Line 366:
Line 367: #line default
Line 368: #line hidden
Line 369:
Line 370: #line 25 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 371: @__ctrl.CommandName = "Update";
Line 372:
Line 373: #line default
Line 374: #line hidden
Line 375:
Line 376: #line 25 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 377: @__ctrl.Text = "Update";
Line 378:
Line 379: #line default
Line 380: #line hidden
Line 381: return @__ctrl;
Line 382: }
Line 383:
Line 384: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 385: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control13() {
Line 386: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 387:
Line 388: #line 27 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 389: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 390:
Line 391: #line default
Line 392: #line hidden
Line 393: @__ctrl.TemplateControl = this;
Line 394: @__ctrl.ApplyStyleSheetSkin(this);
Line 395:
Line 396: #line 27 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 397: @__ctrl.ID = "CancelLinkBtn";
Line 398:
Line 399: #line default
Line 400: #line hidden
Line 401:
Line 402: #line 27 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 403: @__ctrl.CausesValidation = false;
Line 404:
Line 405: #line default
Line 406: #line hidden
Line 407:
Line 408: #line 27 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 409: @__ctrl.CommandName = "Cancel";
Line 410:
Line 411: #line default
Line 412: #line hidden
Line 413:
Line 414: #line 27 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 415: @__ctrl.Text = "Cancel";
Line 416:
Line 417: #line default
Line 418: #line hidden
Line 419: return @__ctrl;
Line 420: }
Line 421:
Line 422: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 423: private void @__BuildControl__control11(System.Web.UI.Control @__ctrl) {
Line 424: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 425:
Line 426: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 427: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 428:
Line 429: #line default
Line 430: #line hidden
Line 431: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 432:
Line 433: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 434: @__ctrl1 = this.@__BuildControl__control12();
Line 435:
Line 436: #line default
Line 437: #line hidden
Line 438:
Line 439: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 440: @__parser.AddParsedSubObject(@__ctrl1);
Line 441:
Line 442: #line default
Line 443: #line hidden
Line 444:
Line 445: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 446: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 447:
Line 448: #line default
Line 449: #line hidden
Line 450: global::System.Web.UI.WebControls.LinkButton @__ctrl2;
Line 451:
Line 452: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 453: @__ctrl2 = this.@__BuildControl__control13();
Line 454:
Line 455: #line default
Line 456: #line hidden
Line 457:
Line 458: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 459: @__parser.AddParsedSubObject(@__ctrl2);
Line 460:
Line 461: #line default
Line 462: #line hidden
Line 463:
Line 464: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 465: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 466:
Line 467: #line default
Line 468: #line hidden
Line 469: }
Line 470:
Line 471: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 472: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control15() {
Line 473: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 474:
Line 475: #line 31 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 476: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 477:
Line 478: #line default
Line 479: #line hidden
Line 480: @__ctrl.TemplateControl = this;
Line 481: @__ctrl.ApplyStyleSheetSkin(this);
Line 482:
Line 483: #line 31 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 484: @__ctrl.ID = "AddNewLinkBtn";
Line 485:
Line 486: #line default
Line 487: #line hidden
Line 488:
Line 489: #line 31 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 490: @__ctrl.CausesValidation = false;
Line 491:
Line 492: #line default
Line 493: #line hidden
Line 494:
Line 495: #line 31 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 496: @__ctrl.CommandName = "AddNew";
Line 497:
Line 498: #line default
Line 499: #line hidden
Line 500:
Line 501: #line 31 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 502: @__ctrl.Text = "Add New";
Line 503:
Line 504: #line default
Line 505: #line hidden
Line 506: return @__ctrl;
Line 507: }
Line 508:
Line 509: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 510: private void @__BuildControl__control14(System.Web.UI.Control @__ctrl) {
Line 511: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 512:
Line 513: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 514: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 515:
Line 516: #line default
Line 517: #line hidden
Line 518: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 519:
Line 520: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 521: @__ctrl1 = this.@__BuildControl__control15();
Line 522:
Line 523: #line default
Line 524: #line hidden
Line 525:
Line 526: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 527: @__parser.AddParsedSubObject(@__ctrl1);
Line 528:
Line 529: #line default
Line 530: #line hidden
Line 531:
Line 532: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 533: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 534:
Line 535: #line default
Line 536: #line hidden
Line 537: }
Line 538:
Line 539: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 540: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control17() {
Line 541: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 542:
Line 543: #line 35 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 544: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 545:
Line 546: #line default
Line 547: #line hidden
Line 548: @__ctrl.TemplateControl = this;
Line 549: @__ctrl.ApplyStyleSheetSkin(this);
Line 550:
Line 551: #line 35 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 552: @__ctrl.ID = "EditLinkBtn";
Line 553:
Line 554: #line default
Line 555: #line hidden
Line 556:
Line 557: #line 35 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 558: @__ctrl.CausesValidation = false;
Line 559:
Line 560: #line default
Line 561: #line hidden
Line 562:
Line 563: #line 35 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 564: @__ctrl.CommandName = "Edit";
Line 565:
Line 566: #line default
Line 567: #line hidden
Line 568:
Line 569: #line 35 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 570: @__ctrl.Text = "Edit";
Line 571:
Line 572: #line default
Line 573: #line hidden
Line 574: return @__ctrl;
Line 575: }
Line 576:
Line 577: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 578: private void @__BuildControl__control16(System.Web.UI.Control @__ctrl) {
Line 579: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 580:
Line 581: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 582: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 583:
Line 584: #line default
Line 585: #line hidden
Line 586: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 587:
Line 588: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 589: @__ctrl1 = this.@__BuildControl__control17();
Line 590:
Line 591: #line default
Line 592: #line hidden
Line 593:
Line 594: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 595: @__parser.AddParsedSubObject(@__ctrl1);
Line 596:
Line 597: #line default
Line 598: #line hidden
Line 599:
Line 600: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 601: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 602:
Line 603: #line default
Line 604: #line hidden
Line 605: }
Line 606:
Line 607: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 608: private void @__BuildControl__control18(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 609:
Line 610: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 611: @__ctrl.CssClass = "headerWithBorder";
Line 612:
Line 613: #line default
Line 614: #line hidden
Line 615: }
Line 616:
Line 617: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 618: private void @__BuildControl__control19(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 619:
Line 620: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 621: @__ctrl.CssClass = "trWithBorder";
Line 622:
Line 623: #line default
Line 624: #line hidden
Line 625: }
Line 626:
Line 627: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 628: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control10() {
Line 629: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 630:
Line 631: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 632: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 633:
Line 634: #line default
Line 635: #line hidden
Line 636:
Line 637: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 638: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control11), null);
Line 639:
Line 640: #line default
Line 641: #line hidden
Line 642:
Line 643: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 644: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control14));
Line 645:
Line 646: #line default
Line 647: #line hidden
Line 648:
Line 649: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 650: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control16), null);
Line 651:
Line 652: #line default
Line 653: #line hidden
Line 654:
Line 655: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 656: @__ctrl.HeaderText = "Edit";
Line 657:
Line 658: #line default
Line 659: #line hidden
Line 660:
Line 661: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 662: @__ctrl.ShowHeader = false;
Line 663:
Line 664: #line default
Line 665: #line hidden
Line 666:
Line 667: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 668: this.@__BuildControl__control18(@__ctrl.HeaderStyle);
Line 669:
Line 670: #line default
Line 671: #line hidden
Line 672:
Line 673: #line 23 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 674: this.@__BuildControl__control19(@__ctrl.ItemStyle);
Line 675:
Line 676: #line default
Line 677: #line hidden
Line 678: return @__ctrl;
Line 679: }
Line 680:
Line 681: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 682: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control22() {
Line 683: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 684:
Line 685: #line 43 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 686: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 687:
Line 688: #line default
Line 689: #line hidden
Line 690: @__ctrl.TemplateControl = this;
Line 691: @__ctrl.ApplyStyleSheetSkin(this);
Line 692:
Line 693: #line 43 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 694: @__ctrl.ID = "DeleteLinkBtn";
Line 695:
Line 696: #line default
Line 697: #line hidden
Line 698:
Line 699: #line 43 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 700: @__ctrl.CausesValidation = false;
Line 701:
Line 702: #line default
Line 703: #line hidden
Line 704:
Line 705: #line 43 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 706: @__ctrl.CommandName = "Delete";
Line 707:
Line 708: #line default
Line 709: #line hidden
Line 710:
Line 711: #line 43 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 712: @__ctrl.Text = "Delete";
Line 713:
Line 714: #line default
Line 715: #line hidden
Line 716: return @__ctrl;
Line 717: }
Line 718:
Line 719: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 720: private void @__BuildControl__control21(System.Web.UI.Control @__ctrl) {
Line 721: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 722:
Line 723: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 724: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 725:
Line 726: #line default
Line 727: #line hidden
Line 728: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 729:
Line 730: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 731: @__ctrl1 = this.@__BuildControl__control22();
Line 732:
Line 733: #line default
Line 734: #line hidden
Line 735:
Line 736: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 737: @__parser.AddParsedSubObject(@__ctrl1);
Line 738:
Line 739: #line default
Line 740: #line hidden
Line 741:
Line 742: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 743: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 744:
Line 745: #line default
Line 746: #line hidden
Line 747: }
Line 748:
Line 749: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 750: private void @__BuildControl__control23(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 751:
Line 752: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 753: @__ctrl.CssClass = "headerWithBorder";
Line 754:
Line 755: #line default
Line 756: #line hidden
Line 757: }
Line 758:
Line 759: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 760: private void @__BuildControl__control24(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 761:
Line 762: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 763: @__ctrl.CssClass = "trWithBorder";
Line 764:
Line 765: #line default
Line 766: #line hidden
Line 767: }
Line 768:
Line 769: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 770: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control20() {
Line 771: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 772:
Line 773: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 774: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 775:
Line 776: #line default
Line 777: #line hidden
Line 778:
Line 779: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 780: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control21), null);
Line 781:
Line 782: #line default
Line 783: #line hidden
Line 784:
Line 785: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 786: @__ctrl.HeaderText = "Delete";
Line 787:
Line 788: #line default
Line 789: #line hidden
Line 790:
Line 791: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 792: @__ctrl.ShowHeader = false;
Line 793:
Line 794: #line default
Line 795: #line hidden
Line 796:
Line 797: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 798: this.@__BuildControl__control23(@__ctrl.HeaderStyle);
Line 799:
Line 800: #line default
Line 801: #line hidden
Line 802:
Line 803: #line 41 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 804: this.@__BuildControl__control24(@__ctrl.ItemStyle);
Line 805:
Line 806: #line default
Line 807: #line hidden
Line 808: return @__ctrl;
Line 809: }
Line 810:
Line 811: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 812: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control27() {
Line 813: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 814:
Line 815: #line 51 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 816: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 817:
Line 818: #line default
Line 819: #line hidden
Line 820: @__ctrl.TemplateControl = this;
Line 821: @__ctrl.ApplyStyleSheetSkin(this);
Line 822:
Line 823: #line 51 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 824: @__ctrl.ID = "txtTerms";
Line 825:
Line 826: #line default
Line 827: #line hidden
Line 828:
Line 829: #line 51 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 830: @__ctrl.CssClass = "aspTextBox01";
Line 831:
Line 832: #line default
Line 833: #line hidden
Line 834:
Line 835: #line 51 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 836: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control27);
Line 837:
Line 838: #line default
Line 839: #line hidden
Line 840: return @__ctrl;
Line 841: }
Line 842:
Line 843: public void @__DataBinding__control27(object sender, System.EventArgs e) {
Line 844: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 845: System.Web.UI.IDataItemContainer Container;
Line 846: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 847: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 848: if ((this.Page.GetDataItem() != null)) {
Line 849:
Line 850: #line 51 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 851: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("Terms"), System.Globalization.CultureInfo.CurrentCulture);
Line 852:
Line 853: #line default
Line 854: #line hidden
Line 855: }
Line 856: }
Line 857:
Line 858: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 859: private void @__BuildControl__control26(System.Web.UI.Control @__ctrl) {
Line 860: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 861:
Line 862: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 863: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 864:
Line 865: #line default
Line 866: #line hidden
Line 867: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 868:
Line 869: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 870: @__ctrl1 = this.@__BuildControl__control27();
Line 871:
Line 872: #line default
Line 873: #line hidden
Line 874:
Line 875: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 876: @__parser.AddParsedSubObject(@__ctrl1);
Line 877:
Line 878: #line default
Line 879: #line hidden
Line 880:
Line 881: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 882: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 883:
Line 884: #line default
Line 885: #line hidden
Line 886: }
Line 887:
Line 888: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 889: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control26(System.Web.UI.Control @__container) {
Line 890: System.Collections.Specialized.OrderedDictionary @__table;
Line 891: System.Web.UI.WebControls.TextBox txtTerms;
Line 892:
Line 893: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 894: txtTerms = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtTerms")));
Line 895:
Line 896: #line default
Line 897: #line hidden
Line 898:
Line 899: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 900: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 901:
Line 902: #line default
Line 903: #line hidden
Line 904:
Line 905: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 906: if ((txtTerms != null)) {
Line 907: @__table["Terms"] = txtTerms.Text;
Line 908: }
Line 909:
Line 910: #line default
Line 911: #line hidden
Line 912: return @__table;
Line 913: }
Line 914:
Line 915: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 916: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control29() {
Line 917: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 918:
Line 919: #line 54 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 920: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 921:
Line 922: #line default
Line 923: #line hidden
Line 924: @__ctrl.TemplateControl = this;
Line 925: @__ctrl.ApplyStyleSheetSkin(this);
Line 926:
Line 927: #line 54 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 928: @__ctrl.ID = "txtTerms";
Line 929:
Line 930: #line default
Line 931: #line hidden
Line 932:
Line 933: #line 54 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 934: @__ctrl.CssClass = "aspTextBox01";
Line 935:
Line 936: #line default
Line 937: #line hidden
Line 938: return @__ctrl;
Line 939: }
Line 940:
Line 941: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 942: private void @__BuildControl__control28(System.Web.UI.Control @__ctrl) {
Line 943: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 944:
Line 945: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 946: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 947:
Line 948: #line default
Line 949: #line hidden
Line 950: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 951:
Line 952: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 953: @__ctrl1 = this.@__BuildControl__control29();
Line 954:
Line 955: #line default
Line 956: #line hidden
Line 957:
Line 958: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 959: @__parser.AddParsedSubObject(@__ctrl1);
Line 960:
Line 961: #line default
Line 962: #line hidden
Line 963:
Line 964: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 965: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 966:
Line 967: #line default
Line 968: #line hidden
Line 969: }
Line 970:
Line 971: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 972: private global::System.Web.UI.WebControls.Label @__BuildControl__control31() {
Line 973: global::System.Web.UI.WebControls.Label @__ctrl;
Line 974:
Line 975: #line 57 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 976: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 977:
Line 978: #line default
Line 979: #line hidden
Line 980: @__ctrl.TemplateControl = this;
Line 981: @__ctrl.ApplyStyleSheetSkin(this);
Line 982:
Line 983: #line 57 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 984: @__ctrl.ID = "TermsLabel";
Line 985:
Line 986: #line default
Line 987: #line hidden
Line 988:
Line 989: #line 57 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 990: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control31);
Line 991:
Line 992: #line default
Line 993: #line hidden
Line 994: return @__ctrl;
Line 995: }
Line 996:
Line 997: public void @__DataBinding__control31(object sender, System.EventArgs e) {
Line 998: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 999: System.Web.UI.IDataItemContainer Container;
Line 1000: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 1001: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 1002: if ((this.Page.GetDataItem() != null)) {
Line 1003:
Line 1004: #line 57 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1005: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("Terms"), System.Globalization.CultureInfo.CurrentCulture);
Line 1006:
Line 1007: #line default
Line 1008: #line hidden
Line 1009: }
Line 1010: }
Line 1011:
Line 1012: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1013: private void @__BuildControl__control30(System.Web.UI.Control @__ctrl) {
Line 1014: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1015:
Line 1016: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1017: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1018:
Line 1019: #line default
Line 1020: #line hidden
Line 1021: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 1022:
Line 1023: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1024: @__ctrl1 = this.@__BuildControl__control31();
Line 1025:
Line 1026: #line default
Line 1027: #line hidden
Line 1028:
Line 1029: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1030: @__parser.AddParsedSubObject(@__ctrl1);
Line 1031:
Line 1032: #line default
Line 1033: #line hidden
Line 1034:
Line 1035: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1036: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1037:
Line 1038: #line default
Line 1039: #line hidden
Line 1040: }
Line 1041:
Line 1042: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1043: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control30(System.Web.UI.Control @__container) {
Line 1044: System.Collections.Specialized.OrderedDictionary @__table;
Line 1045: System.Web.UI.WebControls.Label TermsLabel;
Line 1046:
Line 1047: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1048: TermsLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("TermsLabel")));
Line 1049:
Line 1050: #line default
Line 1051: #line hidden
Line 1052:
Line 1053: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1054: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 1055:
Line 1056: #line default
Line 1057: #line hidden
Line 1058:
Line 1059: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1060: if ((TermsLabel != null)) {
Line 1061: @__table["Terms"] = TermsLabel.Text;
Line 1062: }
Line 1063:
Line 1064: #line default
Line 1065: #line hidden
Line 1066: return @__table;
Line 1067: }
Line 1068:
Line 1069: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1070: private void @__BuildControl__control32(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 1071:
Line 1072: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1073: @__ctrl.CssClass = "headerWithBorder";
Line 1074:
Line 1075: #line default
Line 1076: #line hidden
Line 1077: }
Line 1078:
Line 1079: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1080: private void @__BuildControl__control33(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 1081:
Line 1082: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1083: @__ctrl.CssClass = "trWithBorder";
Line 1084:
Line 1085: #line default
Line 1086: #line hidden
Line 1087: }
Line 1088:
Line 1089: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1090: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control25() {
Line 1091: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 1092:
Line 1093: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1094: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 1095:
Line 1096: #line default
Line 1097: #line hidden
Line 1098:
Line 1099: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1100: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control26), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control26));
Line 1101:
Line 1102: #line default
Line 1103: #line hidden
Line 1104:
Line 1105: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1106: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control28));
Line 1107:
Line 1108: #line default
Line 1109: #line hidden
Line 1110:
Line 1111: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1112: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control30), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control30));
Line 1113:
Line 1114: #line default
Line 1115: #line hidden
Line 1116:
Line 1117: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1118: @__ctrl.HeaderText = "Terms";
Line 1119:
Line 1120: #line default
Line 1121: #line hidden
Line 1122:
Line 1123: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1124: this.@__BuildControl__control32(@__ctrl.HeaderStyle);
Line 1125:
Line 1126: #line default
Line 1127: #line hidden
Line 1128:
Line 1129: #line 49 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1130: this.@__BuildControl__control33(@__ctrl.ItemStyle);
Line 1131:
Line 1132: #line default
Line 1133: #line hidden
Line 1134: return @__ctrl;
Line 1135: }
Line 1136:
Line 1137: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1138: private global::System.Web.UI.WebControls.Label @__BuildControl__control36() {
Line 1139: global::System.Web.UI.WebControls.Label @__ctrl;
Line 1140:
Line 1141: #line 64 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1142: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 1143:
Line 1144: #line default
Line 1145: #line hidden
Line 1146: @__ctrl.TemplateControl = this;
Line 1147: @__ctrl.ApplyStyleSheetSkin(this);
Line 1148:
Line 1149: #line 64 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1150: @__ctrl.ID = "DefaultValueLabel";
Line 1151:
Line 1152: #line default
Line 1153: #line hidden
Line 1154:
Line 1155: #line 64 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1156: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control36);
Line 1157:
Line 1158: #line default
Line 1159: #line hidden
Line 1160: return @__ctrl;
Line 1161: }
Line 1162:
Line 1163: public void @__DataBinding__control36(object sender, System.EventArgs e) {
Line 1164: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 1165: System.Web.UI.IDataItemContainer Container;
Line 1166: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 1167: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 1168: if ((this.Page.GetDataItem() != null)) {
Line 1169:
Line 1170: #line 64 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1171: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("DefaultValue"), System.Globalization.CultureInfo.CurrentCulture);
Line 1172:
Line 1173: #line default
Line 1174: #line hidden
Line 1175: }
Line 1176: }
Line 1177:
Line 1178: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1179: private void @__BuildControl__control35(System.Web.UI.Control @__ctrl) {
Line 1180: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1181:
Line 1182: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1183: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1184:
Line 1185: #line default
Line 1186: #line hidden
Line 1187: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 1188:
Line 1189: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1190: @__ctrl1 = this.@__BuildControl__control36();
Line 1191:
Line 1192: #line default
Line 1193: #line hidden
Line 1194:
Line 1195: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1196: @__parser.AddParsedSubObject(@__ctrl1);
Line 1197:
Line 1198: #line default
Line 1199: #line hidden
Line 1200:
Line 1201: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1202: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1203:
Line 1204: #line default
Line 1205: #line hidden
Line 1206: }
Line 1207:
Line 1208: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1209: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control35(System.Web.UI.Control @__container) {
Line 1210: System.Collections.Specialized.OrderedDictionary @__table;
Line 1211: System.Web.UI.WebControls.Label DefaultValueLabel;
Line 1212:
Line 1213: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1214: DefaultValueLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("DefaultValueLabel")));
Line 1215:
Line 1216: #line default
Line 1217: #line hidden
Line 1218:
Line 1219: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1220: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 1221:
Line 1222: #line default
Line 1223: #line hidden
Line 1224:
Line 1225: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1226: if ((DefaultValueLabel != null)) {
Line 1227: @__table["DefaultValue"] = DefaultValueLabel.Text;
Line 1228: }
Line 1229:
Line 1230: #line default
Line 1231: #line hidden
Line 1232: return @__table;
Line 1233: }
Line 1234:
Line 1235: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1236: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control38() {
Line 1237: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 1238:
Line 1239: #line 67 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1240: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 1241:
Line 1242: #line default
Line 1243: #line hidden
Line 1244: @__ctrl.TemplateControl = this;
Line 1245: @__ctrl.ApplyStyleSheetSkin(this);
Line 1246:
Line 1247: #line 67 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1248: @__ctrl.ID = "txtDefaultValue";
Line 1249:
Line 1250: #line default
Line 1251: #line hidden
Line 1252:
Line 1253: #line 67 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1254: @__ctrl.CssClass = "aspTextBox01";
Line 1255:
Line 1256: #line default
Line 1257: #line hidden
Line 1258:
Line 1259: #line 67 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1260: ((System.Web.UI.IAttributeAccessor)(@__ctrl)).SetAttribute("Style", "margin-bottom: 0px");
Line 1261:
Line 1262: #line default
Line 1263: #line hidden
Line 1264:
Line 1265: #line 67 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1266: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control38);
Line 1267:
Line 1268: #line default
Line 1269: #line hidden
Line 1270: return @__ctrl;
Line 1271: }
Line 1272:
Line 1273: public void @__DataBinding__control38(object sender, System.EventArgs e) {
Line 1274: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 1275: System.Web.UI.IDataItemContainer Container;
Line 1276: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 1277: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 1278: if ((this.Page.GetDataItem() != null)) {
Line 1279:
Line 1280: #line 67 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1281: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("DefaultValue"), System.Globalization.CultureInfo.CurrentCulture);
Line 1282:
Line 1283: #line default
Line 1284: #line hidden
Line 1285: }
Line 1286: }
Line 1287:
Line 1288: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1289: private void @__BuildControl__control37(System.Web.UI.Control @__ctrl) {
Line 1290: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1291:
Line 1292: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1293: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1294:
Line 1295: #line default
Line 1296: #line hidden
Line 1297: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 1298:
Line 1299: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1300: @__ctrl1 = this.@__BuildControl__control38();
Line 1301:
Line 1302: #line default
Line 1303: #line hidden
Line 1304:
Line 1305: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1306: @__parser.AddParsedSubObject(@__ctrl1);
Line 1307:
Line 1308: #line default
Line 1309: #line hidden
Line 1310:
Line 1311: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1312: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1313:
Line 1314: #line default
Line 1315: #line hidden
Line 1316: }
Line 1317:
Line 1318: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1319: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control37(System.Web.UI.Control @__container) {
Line 1320: System.Collections.Specialized.OrderedDictionary @__table;
Line 1321: System.Web.UI.WebControls.TextBox txtDefaultValue;
Line 1322:
Line 1323: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1324: txtDefaultValue = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtDefaultValue")));
Line 1325:
Line 1326: #line default
Line 1327: #line hidden
Line 1328:
Line 1329: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1330: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 1331:
Line 1332: #line default
Line 1333: #line hidden
Line 1334:
Line 1335: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1336: if ((txtDefaultValue != null)) {
Line 1337: @__table["DefaultValue"] = txtDefaultValue.Text;
Line 1338: }
Line 1339:
Line 1340: #line default
Line 1341: #line hidden
Line 1342: return @__table;
Line 1343: }
Line 1344:
Line 1345: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1346: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control40() {
Line 1347: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 1348:
Line 1349: #line 70 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1350: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 1351:
Line 1352: #line default
Line 1353: #line hidden
Line 1354: @__ctrl.TemplateControl = this;
Line 1355: @__ctrl.ApplyStyleSheetSkin(this);
Line 1356:
Line 1357: #line 70 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1358: @__ctrl.ID = "txtDefaultValue";
Line 1359:
Line 1360: #line default
Line 1361: #line hidden
Line 1362:
Line 1363: #line 70 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1364: @__ctrl.CssClass = "aspTextBox01";
Line 1365:
Line 1366: #line default
Line 1367: #line hidden
Line 1368: return @__ctrl;
Line 1369: }
Line 1370:
Line 1371: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1372: private void @__BuildControl__control39(System.Web.UI.Control @__ctrl) {
Line 1373: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1374:
Line 1375: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1376: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1377:
Line 1378: #line default
Line 1379: #line hidden
Line 1380: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 1381:
Line 1382: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1383: @__ctrl1 = this.@__BuildControl__control40();
Line 1384:
Line 1385: #line default
Line 1386: #line hidden
Line 1387:
Line 1388: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1389: @__parser.AddParsedSubObject(@__ctrl1);
Line 1390:
Line 1391: #line default
Line 1392: #line hidden
Line 1393:
Line 1394: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1395: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1396:
Line 1397: #line default
Line 1398: #line hidden
Line 1399: }
Line 1400:
Line 1401: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1402: private void @__BuildControl__control41(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 1403:
Line 1404: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1405: @__ctrl.CssClass = "headerWithBorder";
Line 1406:
Line 1407: #line default
Line 1408: #line hidden
Line 1409: }
Line 1410:
Line 1411: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1412: private void @__BuildControl__control42(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 1413:
Line 1414: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1415: @__ctrl.CssClass = "trWithBorder";
Line 1416:
Line 1417: #line default
Line 1418: #line hidden
Line 1419: }
Line 1420:
Line 1421: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1422: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control34() {
Line 1423: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 1424:
Line 1425: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1426: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 1427:
Line 1428: #line default
Line 1429: #line hidden
Line 1430:
Line 1431: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1432: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control35), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control35));
Line 1433:
Line 1434: #line default
Line 1435: #line hidden
Line 1436:
Line 1437: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1438: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control37), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control37));
Line 1439:
Line 1440: #line default
Line 1441: #line hidden
Line 1442:
Line 1443: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1444: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control39));
Line 1445:
Line 1446: #line default
Line 1447: #line hidden
Line 1448:
Line 1449: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1450: @__ctrl.HeaderText = "Default Value";
Line 1451:
Line 1452: #line default
Line 1453: #line hidden
Line 1454:
Line 1455: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1456: this.@__BuildControl__control41(@__ctrl.HeaderStyle);
Line 1457:
Line 1458: #line default
Line 1459: #line hidden
Line 1460:
Line 1461: #line 62 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1462: this.@__BuildControl__control42(@__ctrl.ItemStyle);
Line 1463:
Line 1464: #line default
Line 1465: #line hidden
Line 1466: return @__ctrl;
Line 1467: }
Line 1468:
Line 1469: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1470: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control45() {
Line 1471: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 1472:
Line 1473: #line 77 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1474: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 1475:
Line 1476: #line default
Line 1477: #line hidden
Line 1478: @__ctrl.TemplateControl = this;
Line 1479: @__ctrl.ApplyStyleSheetSkin(this);
Line 1480:
Line 1481: #line 77 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1482: @__ctrl.ID = "txtActualValue";
Line 1483:
Line 1484: #line default
Line 1485: #line hidden
Line 1486:
Line 1487: #line 77 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1488: @__ctrl.CssClass = "aspTextBox01";
Line 1489:
Line 1490: #line default
Line 1491: #line hidden
Line 1492:
Line 1493: #line 77 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1494: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control45);
Line 1495:
Line 1496: #line default
Line 1497: #line hidden
Line 1498: return @__ctrl;
Line 1499: }
Line 1500:
Line 1501: public void @__DataBinding__control45(object sender, System.EventArgs e) {
Line 1502: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 1503: System.Web.UI.IDataItemContainer Container;
Line 1504: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 1505: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 1506: if ((this.Page.GetDataItem() != null)) {
Line 1507:
Line 1508: #line 77 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1509: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("ActualValue"), System.Globalization.CultureInfo.CurrentCulture);
Line 1510:
Line 1511: #line default
Line 1512: #line hidden
Line 1513: }
Line 1514: }
Line 1515:
Line 1516: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1517: private void @__BuildControl__control44(System.Web.UI.Control @__ctrl) {
Line 1518: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1519:
Line 1520: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1521: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1522:
Line 1523: #line default
Line 1524: #line hidden
Line 1525: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 1526:
Line 1527: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1528: @__ctrl1 = this.@__BuildControl__control45();
Line 1529:
Line 1530: #line default
Line 1531: #line hidden
Line 1532:
Line 1533: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1534: @__parser.AddParsedSubObject(@__ctrl1);
Line 1535:
Line 1536: #line default
Line 1537: #line hidden
Line 1538:
Line 1539: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1540: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1541:
Line 1542: #line default
Line 1543: #line hidden
Line 1544: }
Line 1545:
Line 1546: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1547: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control44(System.Web.UI.Control @__container) {
Line 1548: System.Collections.Specialized.OrderedDictionary @__table;
Line 1549: System.Web.UI.WebControls.TextBox txtActualValue;
Line 1550:
Line 1551: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1552: txtActualValue = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtActualValue")));
Line 1553:
Line 1554: #line default
Line 1555: #line hidden
Line 1556:
Line 1557: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1558: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 1559:
Line 1560: #line default
Line 1561: #line hidden
Line 1562:
Line 1563: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1564: if ((txtActualValue != null)) {
Line 1565: @__table["ActualValue"] = txtActualValue.Text;
Line 1566: }
Line 1567:
Line 1568: #line default
Line 1569: #line hidden
Line 1570: return @__table;
Line 1571: }
Line 1572:
Line 1573: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1574: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control47() {
Line 1575: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 1576:
Line 1577: #line 80 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1578: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 1579:
Line 1580: #line default
Line 1581: #line hidden
Line 1582: @__ctrl.TemplateControl = this;
Line 1583: @__ctrl.ApplyStyleSheetSkin(this);
Line 1584:
Line 1585: #line 80 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1586: @__ctrl.ID = "txtActualValue";
Line 1587:
Line 1588: #line default
Line 1589: #line hidden
Line 1590:
Line 1591: #line 80 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1592: @__ctrl.CssClass = "aspTextBox01";
Line 1593:
Line 1594: #line default
Line 1595: #line hidden
Line 1596: return @__ctrl;
Line 1597: }
Line 1598:
Line 1599: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1600: private void @__BuildControl__control46(System.Web.UI.Control @__ctrl) {
Line 1601: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1602:
Line 1603: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1604: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1605:
Line 1606: #line default
Line 1607: #line hidden
Line 1608: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 1609:
Line 1610: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1611: @__ctrl1 = this.@__BuildControl__control47();
Line 1612:
Line 1613: #line default
Line 1614: #line hidden
Line 1615:
Line 1616: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1617: @__parser.AddParsedSubObject(@__ctrl1);
Line 1618:
Line 1619: #line default
Line 1620: #line hidden
Line 1621:
Line 1622: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1623: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1624:
Line 1625: #line default
Line 1626: #line hidden
Line 1627: }
Line 1628:
Line 1629: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1630: private global::System.Web.UI.WebControls.Label @__BuildControl__control49() {
Line 1631: global::System.Web.UI.WebControls.Label @__ctrl;
Line 1632:
Line 1633: #line 83 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1634: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 1635:
Line 1636: #line default
Line 1637: #line hidden
Line 1638: @__ctrl.TemplateControl = this;
Line 1639: @__ctrl.ApplyStyleSheetSkin(this);
Line 1640:
Line 1641: #line 83 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1642: @__ctrl.ID = "ActualValueLabel";
Line 1643:
Line 1644: #line default
Line 1645: #line hidden
Line 1646:
Line 1647: #line 83 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1648: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control49);
Line 1649:
Line 1650: #line default
Line 1651: #line hidden
Line 1652: return @__ctrl;
Line 1653: }
Line 1654:
Line 1655: public void @__DataBinding__control49(object sender, System.EventArgs e) {
Line 1656: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 1657: System.Web.UI.IDataItemContainer Container;
Line 1658: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 1659: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 1660: if ((this.Page.GetDataItem() != null)) {
Line 1661:
Line 1662: #line 83 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1663: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("ActualValue"), System.Globalization.CultureInfo.CurrentCulture);
Line 1664:
Line 1665: #line default
Line 1666: #line hidden
Line 1667: }
Line 1668: }
Line 1669:
Line 1670: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1671: private void @__BuildControl__control48(System.Web.UI.Control @__ctrl) {
Line 1672: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1673:
Line 1674: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1675: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1676:
Line 1677: #line default
Line 1678: #line hidden
Line 1679: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 1680:
Line 1681: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1682: @__ctrl1 = this.@__BuildControl__control49();
Line 1683:
Line 1684: #line default
Line 1685: #line hidden
Line 1686:
Line 1687: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1688: @__parser.AddParsedSubObject(@__ctrl1);
Line 1689:
Line 1690: #line default
Line 1691: #line hidden
Line 1692:
Line 1693: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1694: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1695:
Line 1696: #line default
Line 1697: #line hidden
Line 1698: }
Line 1699:
Line 1700: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1701: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control48(System.Web.UI.Control @__container) {
Line 1702: System.Collections.Specialized.OrderedDictionary @__table;
Line 1703: System.Web.UI.WebControls.Label ActualValueLabel;
Line 1704:
Line 1705: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1706: ActualValueLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("ActualValueLabel")));
Line 1707:
Line 1708: #line default
Line 1709: #line hidden
Line 1710:
Line 1711: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1712: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 1713:
Line 1714: #line default
Line 1715: #line hidden
Line 1716:
Line 1717: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1718: if ((ActualValueLabel != null)) {
Line 1719: @__table["ActualValue"] = ActualValueLabel.Text;
Line 1720: }
Line 1721:
Line 1722: #line default
Line 1723: #line hidden
Line 1724: return @__table;
Line 1725: }
Line 1726:
Line 1727: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1728: private void @__BuildControl__control50(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 1729:
Line 1730: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1731: @__ctrl.CssClass = "headerWithBorder";
Line 1732:
Line 1733: #line default
Line 1734: #line hidden
Line 1735: }
Line 1736:
Line 1737: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1738: private void @__BuildControl__control51(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 1739:
Line 1740: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1741: @__ctrl.CssClass = "trWithBorder";
Line 1742:
Line 1743: #line default
Line 1744: #line hidden
Line 1745: }
Line 1746:
Line 1747: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1748: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control43() {
Line 1749: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 1750:
Line 1751: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1752: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 1753:
Line 1754: #line default
Line 1755: #line hidden
Line 1756:
Line 1757: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1758: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control44), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control44));
Line 1759:
Line 1760: #line default
Line 1761: #line hidden
Line 1762:
Line 1763: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1764: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control46));
Line 1765:
Line 1766: #line default
Line 1767: #line hidden
Line 1768:
Line 1769: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1770: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control48), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control48));
Line 1771:
Line 1772: #line default
Line 1773: #line hidden
Line 1774:
Line 1775: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1776: @__ctrl.HeaderText = "Actual Value";
Line 1777:
Line 1778: #line default
Line 1779: #line hidden
Line 1780:
Line 1781: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1782: this.@__BuildControl__control50(@__ctrl.HeaderStyle);
Line 1783:
Line 1784: #line default
Line 1785: #line hidden
Line 1786:
Line 1787: #line 75 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1788: this.@__BuildControl__control51(@__ctrl.ItemStyle);
Line 1789:
Line 1790: #line default
Line 1791: #line hidden
Line 1792: return @__ctrl;
Line 1793: }
Line 1794:
Line 1795: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1796: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control54() {
Line 1797: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 1798:
Line 1799: #line 90 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1800: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 1801:
Line 1802: #line default
Line 1803: #line hidden
Line 1804: @__ctrl.TemplateControl = this;
Line 1805: @__ctrl.ApplyStyleSheetSkin(this);
Line 1806:
Line 1807: #line 90 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1808: @__ctrl.ID = "txtReasonForDeviation";
Line 1809:
Line 1810: #line default
Line 1811: #line hidden
Line 1812:
Line 1813: #line 90 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1814: @__ctrl.CssClass = "aspTextBox01";
Line 1815:
Line 1816: #line default
Line 1817: #line hidden
Line 1818:
Line 1819: #line 90 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1820: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control54);
Line 1821:
Line 1822: #line default
Line 1823: #line hidden
Line 1824: return @__ctrl;
Line 1825: }
Line 1826:
Line 1827: public void @__DataBinding__control54(object sender, System.EventArgs e) {
Line 1828: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 1829: System.Web.UI.IDataItemContainer Container;
Line 1830: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 1831: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 1832: if ((this.Page.GetDataItem() != null)) {
Line 1833:
Line 1834: #line 90 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1835: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("ReasonForDeviation"), System.Globalization.CultureInfo.CurrentCulture);
Line 1836:
Line 1837: #line default
Line 1838: #line hidden
Line 1839: }
Line 1840: }
Line 1841:
Line 1842: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1843: private void @__BuildControl__control53(System.Web.UI.Control @__ctrl) {
Line 1844: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1845:
Line 1846: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1847: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1848:
Line 1849: #line default
Line 1850: #line hidden
Line 1851: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 1852:
Line 1853: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1854: @__ctrl1 = this.@__BuildControl__control54();
Line 1855:
Line 1856: #line default
Line 1857: #line hidden
Line 1858:
Line 1859: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1860: @__parser.AddParsedSubObject(@__ctrl1);
Line 1861:
Line 1862: #line default
Line 1863: #line hidden
Line 1864:
Line 1865: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1866: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1867:
Line 1868: #line default
Line 1869: #line hidden
Line 1870: }
Line 1871:
Line 1872: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1873: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control53(System.Web.UI.Control @__container) {
Line 1874: System.Collections.Specialized.OrderedDictionary @__table;
Line 1875: System.Web.UI.WebControls.TextBox txtReasonForDeviation;
Line 1876:
Line 1877: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1878: txtReasonForDeviation = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtReasonForDeviation")));
Line 1879:
Line 1880: #line default
Line 1881: #line hidden
Line 1882:
Line 1883: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1884: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 1885:
Line 1886: #line default
Line 1887: #line hidden
Line 1888:
Line 1889: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1890: if ((txtReasonForDeviation != null)) {
Line 1891: @__table["ReasonForDeviation"] = txtReasonForDeviation.Text;
Line 1892: }
Line 1893:
Line 1894: #line default
Line 1895: #line hidden
Line 1896: return @__table;
Line 1897: }
Line 1898:
Line 1899: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1900: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control56() {
Line 1901: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 1902:
Line 1903: #line 93 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1904: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 1905:
Line 1906: #line default
Line 1907: #line hidden
Line 1908: @__ctrl.TemplateControl = this;
Line 1909: @__ctrl.ApplyStyleSheetSkin(this);
Line 1910:
Line 1911: #line 93 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1912: @__ctrl.ID = "txtReasonForDeviation";
Line 1913:
Line 1914: #line default
Line 1915: #line hidden
Line 1916:
Line 1917: #line 93 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1918: @__ctrl.CssClass = "aspTextBox01";
Line 1919:
Line 1920: #line default
Line 1921: #line hidden
Line 1922: return @__ctrl;
Line 1923: }
Line 1924:
Line 1925: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1926: private void @__BuildControl__control55(System.Web.UI.Control @__ctrl) {
Line 1927: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1928:
Line 1929: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1930: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1931:
Line 1932: #line default
Line 1933: #line hidden
Line 1934: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 1935:
Line 1936: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1937: @__ctrl1 = this.@__BuildControl__control56();
Line 1938:
Line 1939: #line default
Line 1940: #line hidden
Line 1941:
Line 1942: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1943: @__parser.AddParsedSubObject(@__ctrl1);
Line 1944:
Line 1945: #line default
Line 1946: #line hidden
Line 1947:
Line 1948: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1949: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 1950:
Line 1951: #line default
Line 1952: #line hidden
Line 1953: }
Line 1954:
Line 1955: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1956: private global::System.Web.UI.WebControls.Label @__BuildControl__control58() {
Line 1957: global::System.Web.UI.WebControls.Label @__ctrl;
Line 1958:
Line 1959: #line 96 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1960: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 1961:
Line 1962: #line default
Line 1963: #line hidden
Line 1964: @__ctrl.TemplateControl = this;
Line 1965: @__ctrl.ApplyStyleSheetSkin(this);
Line 1966:
Line 1967: #line 96 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1968: @__ctrl.ID = "ReasonForDeviationLabel";
Line 1969:
Line 1970: #line default
Line 1971: #line hidden
Line 1972:
Line 1973: #line 96 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1974: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control58);
Line 1975:
Line 1976: #line default
Line 1977: #line hidden
Line 1978: return @__ctrl;
Line 1979: }
Line 1980:
Line 1981: public void @__DataBinding__control58(object sender, System.EventArgs e) {
Line 1982: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 1983: System.Web.UI.IDataItemContainer Container;
Line 1984: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 1985: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 1986: if ((this.Page.GetDataItem() != null)) {
Line 1987:
Line 1988: #line 96 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 1989: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("ReasonForDeviation"), System.Globalization.CultureInfo.CurrentCulture);
Line 1990:
Line 1991: #line default
Line 1992: #line hidden
Line 1993: }
Line 1994: }
Line 1995:
Line 1996: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 1997: private void @__BuildControl__control57(System.Web.UI.Control @__ctrl) {
Line 1998: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 1999:
Line 2000: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2001: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2002:
Line 2003: #line default
Line 2004: #line hidden
Line 2005: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 2006:
Line 2007: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2008: @__ctrl1 = this.@__BuildControl__control58();
Line 2009:
Line 2010: #line default
Line 2011: #line hidden
Line 2012:
Line 2013: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2014: @__parser.AddParsedSubObject(@__ctrl1);
Line 2015:
Line 2016: #line default
Line 2017: #line hidden
Line 2018:
Line 2019: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2020: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2021:
Line 2022: #line default
Line 2023: #line hidden
Line 2024: }
Line 2025:
Line 2026: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2027: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control57(System.Web.UI.Control @__container) {
Line 2028: System.Collections.Specialized.OrderedDictionary @__table;
Line 2029: System.Web.UI.WebControls.Label ReasonForDeviationLabel;
Line 2030:
Line 2031: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2032: ReasonForDeviationLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("ReasonForDeviationLabel")));
Line 2033:
Line 2034: #line default
Line 2035: #line hidden
Line 2036:
Line 2037: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2038: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 2039:
Line 2040: #line default
Line 2041: #line hidden
Line 2042:
Line 2043: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2044: if ((ReasonForDeviationLabel != null)) {
Line 2045: @__table["ReasonForDeviation"] = ReasonForDeviationLabel.Text;
Line 2046: }
Line 2047:
Line 2048: #line default
Line 2049: #line hidden
Line 2050: return @__table;
Line 2051: }
Line 2052:
Line 2053: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2054: private void @__BuildControl__control59(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 2055:
Line 2056: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2057: @__ctrl.CssClass = "headerWithBorder";
Line 2058:
Line 2059: #line default
Line 2060: #line hidden
Line 2061: }
Line 2062:
Line 2063: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2064: private void @__BuildControl__control60(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 2065:
Line 2066: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2067: @__ctrl.CssClass = "trWithBorder";
Line 2068:
Line 2069: #line default
Line 2070: #line hidden
Line 2071: }
Line 2072:
Line 2073: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2074: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control52() {
Line 2075: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 2076:
Line 2077: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2078: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 2079:
Line 2080: #line default
Line 2081: #line hidden
Line 2082:
Line 2083: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2084: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control53), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control53));
Line 2085:
Line 2086: #line default
Line 2087: #line hidden
Line 2088:
Line 2089: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2090: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control55));
Line 2091:
Line 2092: #line default
Line 2093: #line hidden
Line 2094:
Line 2095: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2096: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control57), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control57));
Line 2097:
Line 2098: #line default
Line 2099: #line hidden
Line 2100:
Line 2101: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2102: @__ctrl.HeaderText = "Reason For Deviation";
Line 2103:
Line 2104: #line default
Line 2105: #line hidden
Line 2106:
Line 2107: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2108: @__ctrl.SortExpression = "Reason For Deviation";
Line 2109:
Line 2110: #line default
Line 2111: #line hidden
Line 2112:
Line 2113: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2114: this.@__BuildControl__control59(@__ctrl.HeaderStyle);
Line 2115:
Line 2116: #line default
Line 2117: #line hidden
Line 2118:
Line 2119: #line 88 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2120: this.@__BuildControl__control60(@__ctrl.ItemStyle);
Line 2121:
Line 2122: #line default
Line 2123: #line hidden
Line 2124: return @__ctrl;
Line 2125: }
Line 2126:
Line 2127: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2128: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control63() {
Line 2129: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 2130:
Line 2131: #line 103 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2132: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 2133:
Line 2134: #line default
Line 2135: #line hidden
Line 2136: @__ctrl.TemplateControl = this;
Line 2137: @__ctrl.ApplyStyleSheetSkin(this);
Line 2138:
Line 2139: #line 103 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2140: @__ctrl.ID = "txtAlerts";
Line 2141:
Line 2142: #line default
Line 2143: #line hidden
Line 2144:
Line 2145: #line 103 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2146: @__ctrl.CssClass = "aspTextBox01";
Line 2147:
Line 2148: #line default
Line 2149: #line hidden
Line 2150:
Line 2151: #line 103 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2152: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control63);
Line 2153:
Line 2154: #line default
Line 2155: #line hidden
Line 2156: return @__ctrl;
Line 2157: }
Line 2158:
Line 2159: public void @__DataBinding__control63(object sender, System.EventArgs e) {
Line 2160: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 2161: System.Web.UI.IDataItemContainer Container;
Line 2162: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 2163: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 2164: if ((this.Page.GetDataItem() != null)) {
Line 2165:
Line 2166: #line 103 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2167: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("Alert"), System.Globalization.CultureInfo.CurrentCulture);
Line 2168:
Line 2169: #line default
Line 2170: #line hidden
Line 2171: }
Line 2172: }
Line 2173:
Line 2174: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2175: private void @__BuildControl__control62(System.Web.UI.Control @__ctrl) {
Line 2176: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 2177:
Line 2178: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2179: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2180:
Line 2181: #line default
Line 2182: #line hidden
Line 2183: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 2184:
Line 2185: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2186: @__ctrl1 = this.@__BuildControl__control63();
Line 2187:
Line 2188: #line default
Line 2189: #line hidden
Line 2190:
Line 2191: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2192: @__parser.AddParsedSubObject(@__ctrl1);
Line 2193:
Line 2194: #line default
Line 2195: #line hidden
Line 2196:
Line 2197: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2198: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2199:
Line 2200: #line default
Line 2201: #line hidden
Line 2202: }
Line 2203:
Line 2204: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2205: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control62(System.Web.UI.Control @__container) {
Line 2206: System.Collections.Specialized.OrderedDictionary @__table;
Line 2207: System.Web.UI.WebControls.TextBox txtAlerts;
Line 2208:
Line 2209: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2210: txtAlerts = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtAlerts")));
Line 2211:
Line 2212: #line default
Line 2213: #line hidden
Line 2214:
Line 2215: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2216: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 2217:
Line 2218: #line default
Line 2219: #line hidden
Line 2220:
Line 2221: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2222: if ((txtAlerts != null)) {
Line 2223: @__table["Alert"] = txtAlerts.Text;
Line 2224: }
Line 2225:
Line 2226: #line default
Line 2227: #line hidden
Line 2228: return @__table;
Line 2229: }
Line 2230:
Line 2231: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2232: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control65() {
Line 2233: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 2234:
Line 2235: #line 106 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2236: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 2237:
Line 2238: #line default
Line 2239: #line hidden
Line 2240: @__ctrl.TemplateControl = this;
Line 2241: @__ctrl.ApplyStyleSheetSkin(this);
Line 2242:
Line 2243: #line 106 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2244: @__ctrl.ID = "txtAlert";
Line 2245:
Line 2246: #line default
Line 2247: #line hidden
Line 2248:
Line 2249: #line 106 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2250: @__ctrl.CssClass = "aspTextBox01";
Line 2251:
Line 2252: #line default
Line 2253: #line hidden
Line 2254: return @__ctrl;
Line 2255: }
Line 2256:
Line 2257: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2258: private void @__BuildControl__control64(System.Web.UI.Control @__ctrl) {
Line 2259: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 2260:
Line 2261: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2262: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2263:
Line 2264: #line default
Line 2265: #line hidden
Line 2266: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 2267:
Line 2268: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2269: @__ctrl1 = this.@__BuildControl__control65();
Line 2270:
Line 2271: #line default
Line 2272: #line hidden
Line 2273:
Line 2274: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2275: @__parser.AddParsedSubObject(@__ctrl1);
Line 2276:
Line 2277: #line default
Line 2278: #line hidden
Line 2279:
Line 2280: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2281: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2282:
Line 2283: #line default
Line 2284: #line hidden
Line 2285: }
Line 2286:
Line 2287: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2288: private global::System.Web.UI.WebControls.Label @__BuildControl__control67() {
Line 2289: global::System.Web.UI.WebControls.Label @__ctrl;
Line 2290:
Line 2291: #line 109 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2292: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 2293:
Line 2294: #line default
Line 2295: #line hidden
Line 2296: @__ctrl.TemplateControl = this;
Line 2297: @__ctrl.ApplyStyleSheetSkin(this);
Line 2298:
Line 2299: #line 109 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2300: @__ctrl.ID = "AlertLabel";
Line 2301:
Line 2302: #line default
Line 2303: #line hidden
Line 2304:
Line 2305: #line 109 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2306: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control67);
Line 2307:
Line 2308: #line default
Line 2309: #line hidden
Line 2310: return @__ctrl;
Line 2311: }
Line 2312:
Line 2313: public void @__DataBinding__control67(object sender, System.EventArgs e) {
Line 2314: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 2315: System.Web.UI.IDataItemContainer Container;
Line 2316: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 2317: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 2318:
Line 2319: #line 109 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2320: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString( Eval("Alert") , System.Globalization.CultureInfo.CurrentCulture);
Line 2321:
Line 2322: #line default
Line 2323: #line hidden
Line 2324: }
Line 2325:
Line 2326: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2327: private void @__BuildControl__control66(System.Web.UI.Control @__ctrl) {
Line 2328: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 2329:
Line 2330: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2331: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2332:
Line 2333: #line default
Line 2334: #line hidden
Line 2335: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 2336:
Line 2337: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2338: @__ctrl1 = this.@__BuildControl__control67();
Line 2339:
Line 2340: #line default
Line 2341: #line hidden
Line 2342:
Line 2343: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2344: @__parser.AddParsedSubObject(@__ctrl1);
Line 2345:
Line 2346: #line default
Line 2347: #line hidden
Line 2348:
Line 2349: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2350: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2351:
Line 2352: #line default
Line 2353: #line hidden
Line 2354: }
Line 2355:
Line 2356: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2357: private void @__BuildControl__control68(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 2358:
Line 2359: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2360: @__ctrl.CssClass = "headerWithBorder";
Line 2361:
Line 2362: #line default
Line 2363: #line hidden
Line 2364: }
Line 2365:
Line 2366: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2367: private void @__BuildControl__control69(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 2368:
Line 2369: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2370: @__ctrl.CssClass = "trWithBorder";
Line 2371:
Line 2372: #line default
Line 2373: #line hidden
Line 2374: }
Line 2375:
Line 2376: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2377: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control61() {
Line 2378: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 2379:
Line 2380: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2381: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 2382:
Line 2383: #line default
Line 2384: #line hidden
Line 2385:
Line 2386: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2387: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control62), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control62));
Line 2388:
Line 2389: #line default
Line 2390: #line hidden
Line 2391:
Line 2392: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2393: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control64));
Line 2394:
Line 2395: #line default
Line 2396: #line hidden
Line 2397:
Line 2398: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2399: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control66), null);
Line 2400:
Line 2401: #line default
Line 2402: #line hidden
Line 2403:
Line 2404: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2405: @__ctrl.HeaderText = "Alert";
Line 2406:
Line 2407: #line default
Line 2408: #line hidden
Line 2409:
Line 2410: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2411: this.@__BuildControl__control68(@__ctrl.HeaderStyle);
Line 2412:
Line 2413: #line default
Line 2414: #line hidden
Line 2415:
Line 2416: #line 101 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2417: this.@__BuildControl__control69(@__ctrl.ItemStyle);
Line 2418:
Line 2419: #line default
Line 2420: #line hidden
Line 2421: return @__ctrl;
Line 2422: }
Line 2423:
Line 2424: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2425: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control72() {
Line 2426: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 2427:
Line 2428: #line 116 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2429: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 2430:
Line 2431: #line default
Line 2432: #line hidden
Line 2433: @__ctrl.TemplateControl = this;
Line 2434: @__ctrl.ApplyStyleSheetSkin(this);
Line 2435:
Line 2436: #line 116 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2437: @__ctrl.ID = "txtContractID";
Line 2438:
Line 2439: #line default
Line 2440: #line hidden
Line 2441:
Line 2442: #line 116 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2443: @__ctrl.CssClass = "aspTextBox01";
Line 2444:
Line 2445: #line default
Line 2446: #line hidden
Line 2447: return @__ctrl;
Line 2448: }
Line 2449:
Line 2450: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2451: private void @__BuildControl__control71(System.Web.UI.Control @__ctrl) {
Line 2452: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 2453:
Line 2454: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2455: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2456:
Line 2457: #line default
Line 2458: #line hidden
Line 2459: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 2460:
Line 2461: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2462: @__ctrl1 = this.@__BuildControl__control72();
Line 2463:
Line 2464: #line default
Line 2465: #line hidden
Line 2466:
Line 2467: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2468: @__parser.AddParsedSubObject(@__ctrl1);
Line 2469:
Line 2470: #line default
Line 2471: #line hidden
Line 2472:
Line 2473: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2474: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2475:
Line 2476: #line default
Line 2477: #line hidden
Line 2478: }
Line 2479:
Line 2480: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2481: private global::System.Web.UI.WebControls.Label @__BuildControl__control74() {
Line 2482: global::System.Web.UI.WebControls.Label @__ctrl;
Line 2483:
Line 2484: #line 119 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2485: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 2486:
Line 2487: #line default
Line 2488: #line hidden
Line 2489: @__ctrl.TemplateControl = this;
Line 2490: @__ctrl.ApplyStyleSheetSkin(this);
Line 2491:
Line 2492: #line 119 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2493: @__ctrl.ID = "ContractIDLabel";
Line 2494:
Line 2495: #line default
Line 2496: #line hidden
Line 2497:
Line 2498: #line 119 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2499: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control74);
Line 2500:
Line 2501: #line default
Line 2502: #line hidden
Line 2503: return @__ctrl;
Line 2504: }
Line 2505:
Line 2506: public void @__DataBinding__control74(object sender, System.EventArgs e) {
Line 2507: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 2508: System.Web.UI.IDataItemContainer Container;
Line 2509: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 2510: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 2511:
Line 2512: #line 119 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2513: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString( Eval("ContractID") , System.Globalization.CultureInfo.CurrentCulture);
Line 2514:
Line 2515: #line default
Line 2516: #line hidden
Line 2517: }
Line 2518:
Line 2519: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2520: private void @__BuildControl__control73(System.Web.UI.Control @__ctrl) {
Line 2521: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 2522:
Line 2523: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2524: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2525:
Line 2526: #line default
Line 2527: #line hidden
Line 2528: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 2529:
Line 2530: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2531: @__ctrl1 = this.@__BuildControl__control74();
Line 2532:
Line 2533: #line default
Line 2534: #line hidden
Line 2535:
Line 2536: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2537: @__parser.AddParsedSubObject(@__ctrl1);
Line 2538:
Line 2539: #line default
Line 2540: #line hidden
Line 2541:
Line 2542: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2543: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2544:
Line 2545: #line default
Line 2546: #line hidden
Line 2547: }
Line 2548:
Line 2549: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2550: private void @__BuildControl__control75(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 2551:
Line 2552: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2553: @__ctrl.CssClass = "headerWithBorder";
Line 2554:
Line 2555: #line default
Line 2556: #line hidden
Line 2557: }
Line 2558:
Line 2559: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2560: private void @__BuildControl__control76(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 2561:
Line 2562: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2563: @__ctrl.CssClass = "trWithBorder";
Line 2564:
Line 2565: #line default
Line 2566: #line hidden
Line 2567: }
Line 2568:
Line 2569: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2570: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control70() {
Line 2571: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 2572:
Line 2573: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2574: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 2575:
Line 2576: #line default
Line 2577: #line hidden
Line 2578:
Line 2579: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2580: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control71));
Line 2581:
Line 2582: #line default
Line 2583: #line hidden
Line 2584:
Line 2585: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2586: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control73), null);
Line 2587:
Line 2588: #line default
Line 2589: #line hidden
Line 2590:
Line 2591: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2592: @__ctrl.HeaderText = "Contract ID";
Line 2593:
Line 2594: #line default
Line 2595: #line hidden
Line 2596:
Line 2597: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2598: this.@__BuildControl__control75(@__ctrl.HeaderStyle);
Line 2599:
Line 2600: #line default
Line 2601: #line hidden
Line 2602:
Line 2603: #line 114 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2604: this.@__BuildControl__control76(@__ctrl.ItemStyle);
Line 2605:
Line 2606: #line default
Line 2607: #line hidden
Line 2608: return @__ctrl;
Line 2609: }
Line 2610:
Line 2611: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2612: private void @__BuildControl__control2(System.Web.UI.WebControls.DataControlFieldCollection @__ctrl) {
Line 2613: global::System.Web.UI.WebControls.TemplateField @__ctrl1;
Line 2614:
Line 2615: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2616: @__ctrl1 = this.@__BuildControl__control3();
Line 2617:
Line 2618: #line default
Line 2619: #line hidden
Line 2620:
Line 2621: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2622: @__ctrl.Add(@__ctrl1);
Line 2623:
Line 2624: #line default
Line 2625: #line hidden
Line 2626: global::System.Web.UI.WebControls.TemplateField @__ctrl2;
Line 2627:
Line 2628: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2629: @__ctrl2 = this.@__BuildControl__control10();
Line 2630:
Line 2631: #line default
Line 2632: #line hidden
Line 2633:
Line 2634: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2635: @__ctrl.Add(@__ctrl2);
Line 2636:
Line 2637: #line default
Line 2638: #line hidden
Line 2639: global::System.Web.UI.WebControls.TemplateField @__ctrl3;
Line 2640:
Line 2641: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2642: @__ctrl3 = this.@__BuildControl__control20();
Line 2643:
Line 2644: #line default
Line 2645: #line hidden
Line 2646:
Line 2647: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2648: @__ctrl.Add(@__ctrl3);
Line 2649:
Line 2650: #line default
Line 2651: #line hidden
Line 2652: global::System.Web.UI.WebControls.TemplateField @__ctrl4;
Line 2653:
Line 2654: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2655: @__ctrl4 = this.@__BuildControl__control25();
Line 2656:
Line 2657: #line default
Line 2658: #line hidden
Line 2659:
Line 2660: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2661: @__ctrl.Add(@__ctrl4);
Line 2662:
Line 2663: #line default
Line 2664: #line hidden
Line 2665: global::System.Web.UI.WebControls.TemplateField @__ctrl5;
Line 2666:
Line 2667: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2668: @__ctrl5 = this.@__BuildControl__control34();
Line 2669:
Line 2670: #line default
Line 2671: #line hidden
Line 2672:
Line 2673: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2674: @__ctrl.Add(@__ctrl5);
Line 2675:
Line 2676: #line default
Line 2677: #line hidden
Line 2678: global::System.Web.UI.WebControls.TemplateField @__ctrl6;
Line 2679:
Line 2680: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2681: @__ctrl6 = this.@__BuildControl__control43();
Line 2682:
Line 2683: #line default
Line 2684: #line hidden
Line 2685:
Line 2686: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2687: @__ctrl.Add(@__ctrl6);
Line 2688:
Line 2689: #line default
Line 2690: #line hidden
Line 2691: global::System.Web.UI.WebControls.TemplateField @__ctrl7;
Line 2692:
Line 2693: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2694: @__ctrl7 = this.@__BuildControl__control52();
Line 2695:
Line 2696: #line default
Line 2697: #line hidden
Line 2698:
Line 2699: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2700: @__ctrl.Add(@__ctrl7);
Line 2701:
Line 2702: #line default
Line 2703: #line hidden
Line 2704: global::System.Web.UI.WebControls.TemplateField @__ctrl8;
Line 2705:
Line 2706: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2707: @__ctrl8 = this.@__BuildControl__control61();
Line 2708:
Line 2709: #line default
Line 2710: #line hidden
Line 2711:
Line 2712: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2713: @__ctrl.Add(@__ctrl8);
Line 2714:
Line 2715: #line default
Line 2716: #line hidden
Line 2717: global::System.Web.UI.WebControls.TemplateField @__ctrl9;
Line 2718:
Line 2719: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2720: @__ctrl9 = this.@__BuildControl__control70();
Line 2721:
Line 2722: #line default
Line 2723: #line hidden
Line 2724:
Line 2725: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2726: @__ctrl.Add(@__ctrl9);
Line 2727:
Line 2728: #line default
Line 2729: #line hidden
Line 2730: }
Line 2731:
Line 2732: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2733: private global::System.Web.UI.WebControls.GridView @__BuildControlgvCriticalTerms() {
Line 2734: global::System.Web.UI.WebControls.GridView @__ctrl;
Line 2735:
Line 2736: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2737: @__ctrl = new global::System.Web.UI.WebControls.GridView();
Line 2738:
Line 2739: #line default
Line 2740: #line hidden
Line 2741: this.gvCriticalTerms = @__ctrl;
Line 2742: @__ctrl.TemplateControl = this;
Line 2743: @__ctrl.ApplyStyleSheetSkin(this);
Line 2744:
Line 2745: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2746: @__ctrl.ID = "gvCriticalTerms";
Line 2747:
Line 2748: #line default
Line 2749: #line hidden
Line 2750:
Line 2751: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2752: @__ctrl.AutoGenerateColumns = false;
Line 2753:
Line 2754: #line default
Line 2755: #line hidden
Line 2756:
Line 2757: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2758: @__ctrl.ShowFooter = true;
Line 2759:
Line 2760: #line default
Line 2761: #line hidden
Line 2762:
Line 2763: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2764: @__ctrl.AllowPaging = true;
Line 2765:
Line 2766: #line default
Line 2767: #line hidden
Line 2768:
Line 2769: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2770: @__ctrl.CssClass = "tableWithBorder";
Line 2771:
Line 2772: #line default
Line 2773: #line hidden
Line 2774:
Line 2775: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2776: @__ctrl.Height = new System.Web.UI.WebControls.Unit(195, System.Web.UI.WebControls.UnitType.Pixel);
Line 2777:
Line 2778: #line default
Line 2779: #line hidden
Line 2780:
Line 2781: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2782: @__ctrl.PageSize = 5;
Line 2783:
Line 2784: #line default
Line 2785: #line hidden
Line 2786:
Line 2787: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2788: @__ctrl.DataKeyNames = new string[] {
Line 2789: "TermsId"};
Line 2790:
Line 2791: #line default
Line 2792: #line hidden
Line 2793:
Line 2794: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2795: this.@__BuildControl__control2(@__ctrl.Columns);
Line 2796:
Line 2797: #line default
Line 2798: #line hidden
Line 2799:
Line 2800: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2801: @__ctrl.RowCommand += new System.Web.UI.WebControls.GridViewCommandEventHandler(this.gvCriticalTerms_RowCommand);
Line 2802:
Line 2803: #line default
Line 2804: #line hidden
Line 2805:
Line 2806: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2807: @__ctrl.RowDeleting += new System.Web.UI.WebControls.GridViewDeleteEventHandler(this.gvCriticalTerms_RowDeleting);
Line 2808:
Line 2809: #line default
Line 2810: #line hidden
Line 2811:
Line 2812: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2813: @__ctrl.RowCancelingEdit += new System.Web.UI.WebControls.GridViewCancelEditEventHandler(this.gvCriticalTerms_RowCancelingEdit);
Line 2814:
Line 2815: #line default
Line 2816: #line hidden
Line 2817:
Line 2818: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2819: @__ctrl.RowEditing += new System.Web.UI.WebControls.GridViewEditEventHandler(this.gvCriticalTerms_RowEditing);
Line 2820:
Line 2821: #line default
Line 2822: #line hidden
Line 2823:
Line 2824: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2825: @__ctrl.RowUpdating += new System.Web.UI.WebControls.GridViewUpdateEventHandler(this.gvCriticalTerms_RowUpdating);
Line 2826:
Line 2827: #line default
Line 2828: #line hidden
Line 2829:
Line 2830: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2831: @__ctrl.PageIndexChanging += new System.Web.UI.WebControls.GridViewPageEventHandler(this.gvCriticalTerms_PageIndexChanging);
Line 2832:
Line 2833: #line default
Line 2834: #line hidden
Line 2835:
Line 2836: #line 5 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2837: @__ctrl.RowCreated += new System.Web.UI.WebControls.GridViewRowEventHandler(this.gvCriticalTerms_RowCreated);
Line 2838:
Line 2839: #line default
Line 2840: #line hidden
Line 2841: return @__ctrl;
Line 2842: }
Line 2843:
Line 2844: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2845: private global::System.Web.UI.WebControls.CheckBox @__BuildControl__control80() {
Line 2846: global::System.Web.UI.WebControls.CheckBox @__ctrl;
Line 2847:
Line 2848: #line 139 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2849: @__ctrl = new global::System.Web.UI.WebControls.CheckBox();
Line 2850:
Line 2851: #line default
Line 2852: #line hidden
Line 2853: @__ctrl.TemplateControl = this;
Line 2854: @__ctrl.ApplyStyleSheetSkin(this);
Line 2855:
Line 2856: #line 139 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2857: @__ctrl.ID = "chkSelectAll";
Line 2858:
Line 2859: #line default
Line 2860: #line hidden
Line 2861:
Line 2862: #line 139 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2863: @__ctrl.AutoPostBack = true;
Line 2864:
Line 2865: #line default
Line 2866: #line hidden
Line 2867: return @__ctrl;
Line 2868: }
Line 2869:
Line 2870: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2871: private void @__BuildControl__control79(System.Web.UI.Control @__ctrl) {
Line 2872: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 2873:
Line 2874: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2875: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2876:
Line 2877: #line default
Line 2878: #line hidden
Line 2879: global::System.Web.UI.WebControls.CheckBox @__ctrl1;
Line 2880:
Line 2881: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2882: @__ctrl1 = this.@__BuildControl__control80();
Line 2883:
Line 2884: #line default
Line 2885: #line hidden
Line 2886:
Line 2887: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2888: @__parser.AddParsedSubObject(@__ctrl1);
Line 2889:
Line 2890: #line default
Line 2891: #line hidden
Line 2892:
Line 2893: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2894: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2895:
Line 2896: #line default
Line 2897: #line hidden
Line 2898: }
Line 2899:
Line 2900: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2901: private global::System.Web.UI.WebControls.CheckBox @__BuildControl__control82() {
Line 2902: global::System.Web.UI.WebControls.CheckBox @__ctrl;
Line 2903:
Line 2904: #line 142 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2905: @__ctrl = new global::System.Web.UI.WebControls.CheckBox();
Line 2906:
Line 2907: #line default
Line 2908: #line hidden
Line 2909: @__ctrl.TemplateControl = this;
Line 2910: @__ctrl.ApplyStyleSheetSkin(this);
Line 2911:
Line 2912: #line 142 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2913: @__ctrl.ID = "selected";
Line 2914:
Line 2915: #line default
Line 2916: #line hidden
Line 2917: return @__ctrl;
Line 2918: }
Line 2919:
Line 2920: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2921: private void @__BuildControl__control81(System.Web.UI.Control @__ctrl) {
Line 2922: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 2923:
Line 2924: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2925: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2926:
Line 2927: #line default
Line 2928: #line hidden
Line 2929: global::System.Web.UI.WebControls.CheckBox @__ctrl1;
Line 2930:
Line 2931: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2932: @__ctrl1 = this.@__BuildControl__control82();
Line 2933:
Line 2934: #line default
Line 2935: #line hidden
Line 2936:
Line 2937: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2938: @__parser.AddParsedSubObject(@__ctrl1);
Line 2939:
Line 2940: #line default
Line 2941: #line hidden
Line 2942:
Line 2943: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2944: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 2945:
Line 2946: #line default
Line 2947: #line hidden
Line 2948: }
Line 2949:
Line 2950: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2951: private void @__BuildControl__control83(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 2952:
Line 2953: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2954: @__ctrl.CssClass = "headerWithBorder";
Line 2955:
Line 2956: #line default
Line 2957: #line hidden
Line 2958: }
Line 2959:
Line 2960: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2961: private void @__BuildControl__control84(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 2962:
Line 2963: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2964: @__ctrl.CssClass = "trWithBorder";
Line 2965:
Line 2966: #line default
Line 2967: #line hidden
Line 2968: }
Line 2969:
Line 2970: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2971: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control78() {
Line 2972: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 2973:
Line 2974: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2975: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 2976:
Line 2977: #line default
Line 2978: #line hidden
Line 2979:
Line 2980: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2981: @__ctrl.HeaderTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control79));
Line 2982:
Line 2983: #line default
Line 2984: #line hidden
Line 2985:
Line 2986: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2987: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control81), null);
Line 2988:
Line 2989: #line default
Line 2990: #line hidden
Line 2991:
Line 2992: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2993: this.@__BuildControl__control83(@__ctrl.HeaderStyle);
Line 2994:
Line 2995: #line default
Line 2996: #line hidden
Line 2997:
Line 2998: #line 137 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 2999: this.@__BuildControl__control84(@__ctrl.ItemStyle);
Line 3000:
Line 3001: #line default
Line 3002: #line hidden
Line 3003: return @__ctrl;
Line 3004: }
Line 3005:
Line 3006: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3007: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control87() {
Line 3008: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 3009:
Line 3010: #line 149 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3011: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 3012:
Line 3013: #line default
Line 3014: #line hidden
Line 3015: @__ctrl.TemplateControl = this;
Line 3016: @__ctrl.ApplyStyleSheetSkin(this);
Line 3017:
Line 3018: #line 149 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3019: @__ctrl.ID = "UpdateLinkBtn";
Line 3020:
Line 3021: #line default
Line 3022: #line hidden
Line 3023:
Line 3024: #line 149 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3025: @__ctrl.CausesValidation = true;
Line 3026:
Line 3027: #line default
Line 3028: #line hidden
Line 3029:
Line 3030: #line 149 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3031: @__ctrl.CommandName = "Update";
Line 3032:
Line 3033: #line default
Line 3034: #line hidden
Line 3035:
Line 3036: #line 149 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3037: @__ctrl.Text = "Update";
Line 3038:
Line 3039: #line default
Line 3040: #line hidden
Line 3041: return @__ctrl;
Line 3042: }
Line 3043:
Line 3044: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3045: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control88() {
Line 3046: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 3047:
Line 3048: #line 151 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3049: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 3050:
Line 3051: #line default
Line 3052: #line hidden
Line 3053: @__ctrl.TemplateControl = this;
Line 3054: @__ctrl.ApplyStyleSheetSkin(this);
Line 3055:
Line 3056: #line 151 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3057: @__ctrl.ID = "CancelLinkBtn";
Line 3058:
Line 3059: #line default
Line 3060: #line hidden
Line 3061:
Line 3062: #line 151 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3063: @__ctrl.CausesValidation = false;
Line 3064:
Line 3065: #line default
Line 3066: #line hidden
Line 3067:
Line 3068: #line 151 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3069: @__ctrl.CommandName = "Cancel";
Line 3070:
Line 3071: #line default
Line 3072: #line hidden
Line 3073:
Line 3074: #line 151 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3075: @__ctrl.Text = "Cancel";
Line 3076:
Line 3077: #line default
Line 3078: #line hidden
Line 3079: return @__ctrl;
Line 3080: }
Line 3081:
Line 3082: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3083: private void @__BuildControl__control86(System.Web.UI.Control @__ctrl) {
Line 3084: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 3085:
Line 3086: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3087: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3088:
Line 3089: #line default
Line 3090: #line hidden
Line 3091: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 3092:
Line 3093: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3094: @__ctrl1 = this.@__BuildControl__control87();
Line 3095:
Line 3096: #line default
Line 3097: #line hidden
Line 3098:
Line 3099: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3100: @__parser.AddParsedSubObject(@__ctrl1);
Line 3101:
Line 3102: #line default
Line 3103: #line hidden
Line 3104:
Line 3105: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3106: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3107:
Line 3108: #line default
Line 3109: #line hidden
Line 3110: global::System.Web.UI.WebControls.LinkButton @__ctrl2;
Line 3111:
Line 3112: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3113: @__ctrl2 = this.@__BuildControl__control88();
Line 3114:
Line 3115: #line default
Line 3116: #line hidden
Line 3117:
Line 3118: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3119: @__parser.AddParsedSubObject(@__ctrl2);
Line 3120:
Line 3121: #line default
Line 3122: #line hidden
Line 3123:
Line 3124: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3125: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3126:
Line 3127: #line default
Line 3128: #line hidden
Line 3129: }
Line 3130:
Line 3131: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3132: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control90() {
Line 3133: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 3134:
Line 3135: #line 155 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3136: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 3137:
Line 3138: #line default
Line 3139: #line hidden
Line 3140: @__ctrl.TemplateControl = this;
Line 3141: @__ctrl.ApplyStyleSheetSkin(this);
Line 3142:
Line 3143: #line 155 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3144: @__ctrl.ID = "AddNewLinkBtn";
Line 3145:
Line 3146: #line default
Line 3147: #line hidden
Line 3148:
Line 3149: #line 155 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3150: @__ctrl.CausesValidation = false;
Line 3151:
Line 3152: #line default
Line 3153: #line hidden
Line 3154:
Line 3155: #line 155 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3156: @__ctrl.CommandName = "AddNew1";
Line 3157:
Line 3158: #line default
Line 3159: #line hidden
Line 3160:
Line 3161: #line 155 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3162: @__ctrl.Text = "Add New";
Line 3163:
Line 3164: #line default
Line 3165: #line hidden
Line 3166: return @__ctrl;
Line 3167: }
Line 3168:
Line 3169: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3170: private void @__BuildControl__control89(System.Web.UI.Control @__ctrl) {
Line 3171: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 3172:
Line 3173: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3174: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3175:
Line 3176: #line default
Line 3177: #line hidden
Line 3178: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 3179:
Line 3180: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3181: @__ctrl1 = this.@__BuildControl__control90();
Line 3182:
Line 3183: #line default
Line 3184: #line hidden
Line 3185:
Line 3186: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3187: @__parser.AddParsedSubObject(@__ctrl1);
Line 3188:
Line 3189: #line default
Line 3190: #line hidden
Line 3191:
Line 3192: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3193: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3194:
Line 3195: #line default
Line 3196: #line hidden
Line 3197: }
Line 3198:
Line 3199: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3200: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control92() {
Line 3201: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 3202:
Line 3203: #line 159 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3204: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 3205:
Line 3206: #line default
Line 3207: #line hidden
Line 3208: @__ctrl.TemplateControl = this;
Line 3209: @__ctrl.ApplyStyleSheetSkin(this);
Line 3210:
Line 3211: #line 159 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3212: @__ctrl.ID = "EditLinkBtn";
Line 3213:
Line 3214: #line default
Line 3215: #line hidden
Line 3216:
Line 3217: #line 159 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3218: @__ctrl.CausesValidation = false;
Line 3219:
Line 3220: #line default
Line 3221: #line hidden
Line 3222:
Line 3223: #line 159 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3224: @__ctrl.CommandName = "Edit";
Line 3225:
Line 3226: #line default
Line 3227: #line hidden
Line 3228:
Line 3229: #line 159 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3230: @__ctrl.Text = "Edit";
Line 3231:
Line 3232: #line default
Line 3233: #line hidden
Line 3234: return @__ctrl;
Line 3235: }
Line 3236:
Line 3237: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3238: private void @__BuildControl__control91(System.Web.UI.Control @__ctrl) {
Line 3239: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 3240:
Line 3241: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3242: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3243:
Line 3244: #line default
Line 3245: #line hidden
Line 3246: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 3247:
Line 3248: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3249: @__ctrl1 = this.@__BuildControl__control92();
Line 3250:
Line 3251: #line default
Line 3252: #line hidden
Line 3253:
Line 3254: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3255: @__parser.AddParsedSubObject(@__ctrl1);
Line 3256:
Line 3257: #line default
Line 3258: #line hidden
Line 3259:
Line 3260: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3261: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3262:
Line 3263: #line default
Line 3264: #line hidden
Line 3265: }
Line 3266:
Line 3267: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3268: private void @__BuildControl__control93(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 3269:
Line 3270: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3271: @__ctrl.CssClass = "headerWithBorder";
Line 3272:
Line 3273: #line default
Line 3274: #line hidden
Line 3275: }
Line 3276:
Line 3277: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3278: private void @__BuildControl__control94(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 3279:
Line 3280: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3281: @__ctrl.CssClass = "trWithBorder";
Line 3282:
Line 3283: #line default
Line 3284: #line hidden
Line 3285: }
Line 3286:
Line 3287: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3288: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control85() {
Line 3289: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 3290:
Line 3291: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3292: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 3293:
Line 3294: #line default
Line 3295: #line hidden
Line 3296:
Line 3297: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3298: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control86), null);
Line 3299:
Line 3300: #line default
Line 3301: #line hidden
Line 3302:
Line 3303: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3304: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control89));
Line 3305:
Line 3306: #line default
Line 3307: #line hidden
Line 3308:
Line 3309: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3310: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control91), null);
Line 3311:
Line 3312: #line default
Line 3313: #line hidden
Line 3314:
Line 3315: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3316: @__ctrl.HeaderText = "Edit";
Line 3317:
Line 3318: #line default
Line 3319: #line hidden
Line 3320:
Line 3321: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3322: @__ctrl.ShowHeader = false;
Line 3323:
Line 3324: #line default
Line 3325: #line hidden
Line 3326:
Line 3327: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3328: this.@__BuildControl__control93(@__ctrl.HeaderStyle);
Line 3329:
Line 3330: #line default
Line 3331: #line hidden
Line 3332:
Line 3333: #line 147 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3334: this.@__BuildControl__control94(@__ctrl.ItemStyle);
Line 3335:
Line 3336: #line default
Line 3337: #line hidden
Line 3338: return @__ctrl;
Line 3339: }
Line 3340:
Line 3341: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3342: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control97() {
Line 3343: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 3344:
Line 3345: #line 167 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3346: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 3347:
Line 3348: #line default
Line 3349: #line hidden
Line 3350: @__ctrl.TemplateControl = this;
Line 3351: @__ctrl.ApplyStyleSheetSkin(this);
Line 3352:
Line 3353: #line 167 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3354: @__ctrl.ID = "DeleteLinkBtn";
Line 3355:
Line 3356: #line default
Line 3357: #line hidden
Line 3358:
Line 3359: #line 167 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3360: @__ctrl.CausesValidation = false;
Line 3361:
Line 3362: #line default
Line 3363: #line hidden
Line 3364:
Line 3365: #line 167 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3366: @__ctrl.CommandName = "Delete";
Line 3367:
Line 3368: #line default
Line 3369: #line hidden
Line 3370:
Line 3371: #line 167 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3372: @__ctrl.Text = "Delete";
Line 3373:
Line 3374: #line default
Line 3375: #line hidden
Line 3376: return @__ctrl;
Line 3377: }
Line 3378:
Line 3379: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3380: private void @__BuildControl__control96(System.Web.UI.Control @__ctrl) {
Line 3381: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 3382:
Line 3383: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3384: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3385:
Line 3386: #line default
Line 3387: #line hidden
Line 3388: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 3389:
Line 3390: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3391: @__ctrl1 = this.@__BuildControl__control97();
Line 3392:
Line 3393: #line default
Line 3394: #line hidden
Line 3395:
Line 3396: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3397: @__parser.AddParsedSubObject(@__ctrl1);
Line 3398:
Line 3399: #line default
Line 3400: #line hidden
Line 3401:
Line 3402: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3403: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3404:
Line 3405: #line default
Line 3406: #line hidden
Line 3407: }
Line 3408:
Line 3409: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3410: private void @__BuildControl__control98(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 3411:
Line 3412: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3413: @__ctrl.CssClass = "headerWithBorder";
Line 3414:
Line 3415: #line default
Line 3416: #line hidden
Line 3417: }
Line 3418:
Line 3419: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3420: private void @__BuildControl__control99(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 3421:
Line 3422: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3423: @__ctrl.CssClass = "trWithBorder";
Line 3424:
Line 3425: #line default
Line 3426: #line hidden
Line 3427: }
Line 3428:
Line 3429: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3430: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control95() {
Line 3431: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 3432:
Line 3433: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3434: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 3435:
Line 3436: #line default
Line 3437: #line hidden
Line 3438:
Line 3439: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3440: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control96), null);
Line 3441:
Line 3442: #line default
Line 3443: #line hidden
Line 3444:
Line 3445: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3446: @__ctrl.HeaderText = "Delete";
Line 3447:
Line 3448: #line default
Line 3449: #line hidden
Line 3450:
Line 3451: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3452: @__ctrl.ShowHeader = false;
Line 3453:
Line 3454: #line default
Line 3455: #line hidden
Line 3456:
Line 3457: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3458: this.@__BuildControl__control98(@__ctrl.HeaderStyle);
Line 3459:
Line 3460: #line default
Line 3461: #line hidden
Line 3462:
Line 3463: #line 165 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3464: this.@__BuildControl__control99(@__ctrl.ItemStyle);
Line 3465:
Line 3466: #line default
Line 3467: #line hidden
Line 3468: return @__ctrl;
Line 3469: }
Line 3470:
Line 3471: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3472: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control102() {
Line 3473: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 3474:
Line 3475: #line 175 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3476: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 3477:
Line 3478: #line default
Line 3479: #line hidden
Line 3480: @__ctrl.TemplateControl = this;
Line 3481: @__ctrl.ApplyStyleSheetSkin(this);
Line 3482:
Line 3483: #line 175 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3484: @__ctrl.ID = "txtDocDesc";
Line 3485:
Line 3486: #line default
Line 3487: #line hidden
Line 3488:
Line 3489: #line 175 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3490: @__ctrl.CssClass = "aspTextBox01";
Line 3491:
Line 3492: #line default
Line 3493: #line hidden
Line 3494:
Line 3495: #line 175 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3496: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control102);
Line 3497:
Line 3498: #line default
Line 3499: #line hidden
Line 3500: return @__ctrl;
Line 3501: }
Line 3502:
Line 3503: public void @__DataBinding__control102(object sender, System.EventArgs e) {
Line 3504: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 3505: System.Web.UI.IDataItemContainer Container;
Line 3506: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 3507: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 3508: if ((this.Page.GetDataItem() != null)) {
Line 3509:
Line 3510: #line 175 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3511: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("DocDesc"), System.Globalization.CultureInfo.CurrentCulture);
Line 3512:
Line 3513: #line default
Line 3514: #line hidden
Line 3515: }
Line 3516: }
Line 3517:
Line 3518: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3519: private void @__BuildControl__control101(System.Web.UI.Control @__ctrl) {
Line 3520: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 3521:
Line 3522: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3523: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3524:
Line 3525: #line default
Line 3526: #line hidden
Line 3527: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 3528:
Line 3529: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3530: @__ctrl1 = this.@__BuildControl__control102();
Line 3531:
Line 3532: #line default
Line 3533: #line hidden
Line 3534:
Line 3535: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3536: @__parser.AddParsedSubObject(@__ctrl1);
Line 3537:
Line 3538: #line default
Line 3539: #line hidden
Line 3540:
Line 3541: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3542: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3543:
Line 3544: #line default
Line 3545: #line hidden
Line 3546: }
Line 3547:
Line 3548: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3549: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control101(System.Web.UI.Control @__container) {
Line 3550: System.Collections.Specialized.OrderedDictionary @__table;
Line 3551: System.Web.UI.WebControls.TextBox txtDocDesc;
Line 3552:
Line 3553: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3554: txtDocDesc = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtDocDesc")));
Line 3555:
Line 3556: #line default
Line 3557: #line hidden
Line 3558:
Line 3559: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3560: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 3561:
Line 3562: #line default
Line 3563: #line hidden
Line 3564:
Line 3565: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3566: if ((txtDocDesc != null)) {
Line 3567: @__table["DocDesc"] = txtDocDesc.Text;
Line 3568: }
Line 3569:
Line 3570: #line default
Line 3571: #line hidden
Line 3572: return @__table;
Line 3573: }
Line 3574:
Line 3575: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3576: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control104() {
Line 3577: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 3578:
Line 3579: #line 178 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3580: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 3581:
Line 3582: #line default
Line 3583: #line hidden
Line 3584: @__ctrl.TemplateControl = this;
Line 3585: @__ctrl.ApplyStyleSheetSkin(this);
Line 3586:
Line 3587: #line 178 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3588: @__ctrl.ID = "txtDocDesc";
Line 3589:
Line 3590: #line default
Line 3591: #line hidden
Line 3592:
Line 3593: #line 178 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3594: @__ctrl.CssClass = "aspTextBox01";
Line 3595:
Line 3596: #line default
Line 3597: #line hidden
Line 3598: return @__ctrl;
Line 3599: }
Line 3600:
Line 3601: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3602: private void @__BuildControl__control103(System.Web.UI.Control @__ctrl) {
Line 3603: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 3604:
Line 3605: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3606: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3607:
Line 3608: #line default
Line 3609: #line hidden
Line 3610: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 3611:
Line 3612: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3613: @__ctrl1 = this.@__BuildControl__control104();
Line 3614:
Line 3615: #line default
Line 3616: #line hidden
Line 3617:
Line 3618: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3619: @__parser.AddParsedSubObject(@__ctrl1);
Line 3620:
Line 3621: #line default
Line 3622: #line hidden
Line 3623:
Line 3624: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3625: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3626:
Line 3627: #line default
Line 3628: #line hidden
Line 3629: }
Line 3630:
Line 3631: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3632: private global::System.Web.UI.WebControls.Label @__BuildControl__control106() {
Line 3633: global::System.Web.UI.WebControls.Label @__ctrl;
Line 3634:
Line 3635: #line 181 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3636: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 3637:
Line 3638: #line default
Line 3639: #line hidden
Line 3640: @__ctrl.TemplateControl = this;
Line 3641: @__ctrl.ApplyStyleSheetSkin(this);
Line 3642:
Line 3643: #line 181 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3644: @__ctrl.ID = "DocDescLabel";
Line 3645:
Line 3646: #line default
Line 3647: #line hidden
Line 3648:
Line 3649: #line 181 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3650: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control106);
Line 3651:
Line 3652: #line default
Line 3653: #line hidden
Line 3654: return @__ctrl;
Line 3655: }
Line 3656:
Line 3657: public void @__DataBinding__control106(object sender, System.EventArgs e) {
Line 3658: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 3659: System.Web.UI.IDataItemContainer Container;
Line 3660: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 3661: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 3662: if ((this.Page.GetDataItem() != null)) {
Line 3663:
Line 3664: #line 181 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3665: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("DocDesc"), System.Globalization.CultureInfo.CurrentCulture);
Line 3666:
Line 3667: #line default
Line 3668: #line hidden
Line 3669: }
Line 3670: }
Line 3671:
Line 3672: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3673: private void @__BuildControl__control105(System.Web.UI.Control @__ctrl) {
Line 3674: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 3675:
Line 3676: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3677: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3678:
Line 3679: #line default
Line 3680: #line hidden
Line 3681: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 3682:
Line 3683: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3684: @__ctrl1 = this.@__BuildControl__control106();
Line 3685:
Line 3686: #line default
Line 3687: #line hidden
Line 3688:
Line 3689: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3690: @__parser.AddParsedSubObject(@__ctrl1);
Line 3691:
Line 3692: #line default
Line 3693: #line hidden
Line 3694:
Line 3695: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3696: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3697:
Line 3698: #line default
Line 3699: #line hidden
Line 3700: }
Line 3701:
Line 3702: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3703: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control105(System.Web.UI.Control @__container) {
Line 3704: System.Collections.Specialized.OrderedDictionary @__table;
Line 3705: System.Web.UI.WebControls.Label DocDescLabel;
Line 3706:
Line 3707: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3708: DocDescLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("DocDescLabel")));
Line 3709:
Line 3710: #line default
Line 3711: #line hidden
Line 3712:
Line 3713: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3714: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 3715:
Line 3716: #line default
Line 3717: #line hidden
Line 3718:
Line 3719: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3720: if ((DocDescLabel != null)) {
Line 3721: @__table["DocDesc"] = DocDescLabel.Text;
Line 3722: }
Line 3723:
Line 3724: #line default
Line 3725: #line hidden
Line 3726: return @__table;
Line 3727: }
Line 3728:
Line 3729: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3730: private void @__BuildControl__control107(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 3731:
Line 3732: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3733: @__ctrl.CssClass = "headerWithBorder";
Line 3734:
Line 3735: #line default
Line 3736: #line hidden
Line 3737: }
Line 3738:
Line 3739: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3740: private void @__BuildControl__control108(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 3741:
Line 3742: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3743: @__ctrl.CssClass = "trWithBorder";
Line 3744:
Line 3745: #line default
Line 3746: #line hidden
Line 3747: }
Line 3748:
Line 3749: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3750: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control100() {
Line 3751: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 3752:
Line 3753: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3754: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 3755:
Line 3756: #line default
Line 3757: #line hidden
Line 3758:
Line 3759: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3760: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control101), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control101));
Line 3761:
Line 3762: #line default
Line 3763: #line hidden
Line 3764:
Line 3765: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3766: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control103));
Line 3767:
Line 3768: #line default
Line 3769: #line hidden
Line 3770:
Line 3771: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3772: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control105), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control105));
Line 3773:
Line 3774: #line default
Line 3775: #line hidden
Line 3776:
Line 3777: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3778: @__ctrl.HeaderText = "Document Description";
Line 3779:
Line 3780: #line default
Line 3781: #line hidden
Line 3782:
Line 3783: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3784: this.@__BuildControl__control107(@__ctrl.HeaderStyle);
Line 3785:
Line 3786: #line default
Line 3787: #line hidden
Line 3788:
Line 3789: #line 173 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3790: this.@__BuildControl__control108(@__ctrl.ItemStyle);
Line 3791:
Line 3792: #line default
Line 3793: #line hidden
Line 3794: return @__ctrl;
Line 3795: }
Line 3796:
Line 3797: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3798: private global::System.Web.UI.WebControls.Label @__BuildControl__control111() {
Line 3799: global::System.Web.UI.WebControls.Label @__ctrl;
Line 3800:
Line 3801: #line 188 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3802: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 3803:
Line 3804: #line default
Line 3805: #line hidden
Line 3806: @__ctrl.TemplateControl = this;
Line 3807: @__ctrl.ApplyStyleSheetSkin(this);
Line 3808:
Line 3809: #line 188 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3810: @__ctrl.ID = "FileNameLabel";
Line 3811:
Line 3812: #line default
Line 3813: #line hidden
Line 3814:
Line 3815: #line 188 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3816: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control111);
Line 3817:
Line 3818: #line default
Line 3819: #line hidden
Line 3820: return @__ctrl;
Line 3821: }
Line 3822:
Line 3823: public void @__DataBinding__control111(object sender, System.EventArgs e) {
Line 3824: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 3825: System.Web.UI.IDataItemContainer Container;
Line 3826: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 3827: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 3828: if ((this.Page.GetDataItem() != null)) {
Line 3829:
Line 3830: #line 188 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3831: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("FileName"), System.Globalization.CultureInfo.CurrentCulture);
Line 3832:
Line 3833: #line default
Line 3834: #line hidden
Line 3835: }
Line 3836: }
Line 3837:
Line 3838: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3839: private void @__BuildControl__control110(System.Web.UI.Control @__ctrl) {
Line 3840: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 3841:
Line 3842: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3843: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3844:
Line 3845: #line default
Line 3846: #line hidden
Line 3847: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 3848:
Line 3849: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3850: @__ctrl1 = this.@__BuildControl__control111();
Line 3851:
Line 3852: #line default
Line 3853: #line hidden
Line 3854:
Line 3855: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3856: @__parser.AddParsedSubObject(@__ctrl1);
Line 3857:
Line 3858: #line default
Line 3859: #line hidden
Line 3860:
Line 3861: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3862: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3863:
Line 3864: #line default
Line 3865: #line hidden
Line 3866: }
Line 3867:
Line 3868: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3869: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control110(System.Web.UI.Control @__container) {
Line 3870: System.Collections.Specialized.OrderedDictionary @__table;
Line 3871: System.Web.UI.WebControls.Label FileNameLabel;
Line 3872:
Line 3873: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3874: FileNameLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("FileNameLabel")));
Line 3875:
Line 3876: #line default
Line 3877: #line hidden
Line 3878:
Line 3879: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3880: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 3881:
Line 3882: #line default
Line 3883: #line hidden
Line 3884:
Line 3885: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3886: if ((FileNameLabel != null)) {
Line 3887: @__table["FileName"] = FileNameLabel.Text;
Line 3888: }
Line 3889:
Line 3890: #line default
Line 3891: #line hidden
Line 3892: return @__table;
Line 3893: }
Line 3894:
Line 3895: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3896: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control113() {
Line 3897: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 3898:
Line 3899: #line 191 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3900: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 3901:
Line 3902: #line default
Line 3903: #line hidden
Line 3904: @__ctrl.TemplateControl = this;
Line 3905: @__ctrl.ApplyStyleSheetSkin(this);
Line 3906:
Line 3907: #line 191 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3908: @__ctrl.ID = "txtFileName";
Line 3909:
Line 3910: #line default
Line 3911: #line hidden
Line 3912:
Line 3913: #line 191 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3914: @__ctrl.CssClass = "aspTextBox01";
Line 3915:
Line 3916: #line default
Line 3917: #line hidden
Line 3918:
Line 3919: #line 191 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3920: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control113);
Line 3921:
Line 3922: #line default
Line 3923: #line hidden
Line 3924: return @__ctrl;
Line 3925: }
Line 3926:
Line 3927: public void @__DataBinding__control113(object sender, System.EventArgs e) {
Line 3928: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 3929: System.Web.UI.IDataItemContainer Container;
Line 3930: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 3931: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 3932: if ((this.Page.GetDataItem() != null)) {
Line 3933:
Line 3934: #line 191 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3935: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("FileName"), System.Globalization.CultureInfo.CurrentCulture);
Line 3936:
Line 3937: #line default
Line 3938: #line hidden
Line 3939: }
Line 3940: }
Line 3941:
Line 3942: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3943: private void @__BuildControl__control112(System.Web.UI.Control @__ctrl) {
Line 3944: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 3945:
Line 3946: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3947: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3948:
Line 3949: #line default
Line 3950: #line hidden
Line 3951: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 3952:
Line 3953: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3954: @__ctrl1 = this.@__BuildControl__control113();
Line 3955:
Line 3956: #line default
Line 3957: #line hidden
Line 3958:
Line 3959: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3960: @__parser.AddParsedSubObject(@__ctrl1);
Line 3961:
Line 3962: #line default
Line 3963: #line hidden
Line 3964:
Line 3965: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3966: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 3967:
Line 3968: #line default
Line 3969: #line hidden
Line 3970: }
Line 3971:
Line 3972: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 3973: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control112(System.Web.UI.Control @__container) {
Line 3974: System.Collections.Specialized.OrderedDictionary @__table;
Line 3975: System.Web.UI.WebControls.TextBox txtFileName;
Line 3976:
Line 3977: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3978: txtFileName = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtFileName")));
Line 3979:
Line 3980: #line default
Line 3981: #line hidden
Line 3982:
Line 3983: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3984: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 3985:
Line 3986: #line default
Line 3987: #line hidden
Line 3988:
Line 3989: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 3990: if ((txtFileName != null)) {
Line 3991: @__table["FileName"] = txtFileName.Text;
Line 3992: }
Line 3993:
Line 3994: #line default
Line 3995: #line hidden
Line 3996: return @__table;
Line 3997: }
Line 3998:
Line 3999: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4000: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control115() {
Line 4001: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 4002:
Line 4003: #line 194 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4004: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 4005:
Line 4006: #line default
Line 4007: #line hidden
Line 4008: @__ctrl.TemplateControl = this;
Line 4009: @__ctrl.ApplyStyleSheetSkin(this);
Line 4010:
Line 4011: #line 194 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4012: @__ctrl.ID = "txtFileName";
Line 4013:
Line 4014: #line default
Line 4015: #line hidden
Line 4016:
Line 4017: #line 194 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4018: @__ctrl.CssClass = "aspTextBox01";
Line 4019:
Line 4020: #line default
Line 4021: #line hidden
Line 4022: return @__ctrl;
Line 4023: }
Line 4024:
Line 4025: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4026: private void @__BuildControl__control114(System.Web.UI.Control @__ctrl) {
Line 4027: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 4028:
Line 4029: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4030: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4031:
Line 4032: #line default
Line 4033: #line hidden
Line 4034: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 4035:
Line 4036: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4037: @__ctrl1 = this.@__BuildControl__control115();
Line 4038:
Line 4039: #line default
Line 4040: #line hidden
Line 4041:
Line 4042: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4043: @__parser.AddParsedSubObject(@__ctrl1);
Line 4044:
Line 4045: #line default
Line 4046: #line hidden
Line 4047:
Line 4048: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4049: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4050:
Line 4051: #line default
Line 4052: #line hidden
Line 4053: }
Line 4054:
Line 4055: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4056: private void @__BuildControl__control116(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 4057:
Line 4058: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4059: @__ctrl.CssClass = "headerWithBorder";
Line 4060:
Line 4061: #line default
Line 4062: #line hidden
Line 4063: }
Line 4064:
Line 4065: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4066: private void @__BuildControl__control117(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 4067:
Line 4068: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4069: @__ctrl.CssClass = "trWithBorder";
Line 4070:
Line 4071: #line default
Line 4072: #line hidden
Line 4073: }
Line 4074:
Line 4075: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4076: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control109() {
Line 4077: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 4078:
Line 4079: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4080: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 4081:
Line 4082: #line default
Line 4083: #line hidden
Line 4084:
Line 4085: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4086: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control110), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control110));
Line 4087:
Line 4088: #line default
Line 4089: #line hidden
Line 4090:
Line 4091: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4092: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control112), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control112));
Line 4093:
Line 4094: #line default
Line 4095: #line hidden
Line 4096:
Line 4097: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4098: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control114));
Line 4099:
Line 4100: #line default
Line 4101: #line hidden
Line 4102:
Line 4103: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4104: @__ctrl.HeaderText = "Document Filename";
Line 4105:
Line 4106: #line default
Line 4107: #line hidden
Line 4108:
Line 4109: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4110: this.@__BuildControl__control116(@__ctrl.HeaderStyle);
Line 4111:
Line 4112: #line default
Line 4113: #line hidden
Line 4114:
Line 4115: #line 186 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4116: this.@__BuildControl__control117(@__ctrl.ItemStyle);
Line 4117:
Line 4118: #line default
Line 4119: #line hidden
Line 4120: return @__ctrl;
Line 4121: }
Line 4122:
Line 4123: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4124: private global::System.Web.UI.WebControls.FileUpload @__BuildControl__control120() {
Line 4125: global::System.Web.UI.WebControls.FileUpload @__ctrl;
Line 4126:
Line 4127: #line 201 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4128: @__ctrl = new global::System.Web.UI.WebControls.FileUpload();
Line 4129:
Line 4130: #line default
Line 4131: #line hidden
Line 4132: @__ctrl.TemplateControl = this;
Line 4133: @__ctrl.ApplyStyleSheetSkin(this);
Line 4134:
Line 4135: #line 201 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4136: @__ctrl.ID = "txtFilePath";
Line 4137:
Line 4138: #line default
Line 4139: #line hidden
Line 4140:
Line 4141: #line 201 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4142: @__ctrl.CssClass = "aspTextBox01";
Line 4143:
Line 4144: #line default
Line 4145: #line hidden
Line 4146: return @__ctrl;
Line 4147: }
Line 4148:
Line 4149: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4150: private void @__BuildControl__control119(System.Web.UI.Control @__ctrl) {
Line 4151: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 4152:
Line 4153: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4154: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4155:
Line 4156: #line default
Line 4157: #line hidden
Line 4158: global::System.Web.UI.WebControls.FileUpload @__ctrl1;
Line 4159:
Line 4160: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4161: @__ctrl1 = this.@__BuildControl__control120();
Line 4162:
Line 4163: #line default
Line 4164: #line hidden
Line 4165:
Line 4166: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4167: @__parser.AddParsedSubObject(@__ctrl1);
Line 4168:
Line 4169: #line default
Line 4170: #line hidden
Line 4171:
Line 4172: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4173: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4174:
Line 4175: #line default
Line 4176: #line hidden
Line 4177: }
Line 4178:
Line 4179: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4180: private global::System.Web.UI.WebControls.FileUpload @__BuildControl__control122() {
Line 4181: global::System.Web.UI.WebControls.FileUpload @__ctrl;
Line 4182:
Line 4183: #line 204 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4184: @__ctrl = new global::System.Web.UI.WebControls.FileUpload();
Line 4185:
Line 4186: #line default
Line 4187: #line hidden
Line 4188: @__ctrl.TemplateControl = this;
Line 4189: @__ctrl.ApplyStyleSheetSkin(this);
Line 4190:
Line 4191: #line 204 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4192: @__ctrl.ID = "txtFilePath";
Line 4193:
Line 4194: #line default
Line 4195: #line hidden
Line 4196:
Line 4197: #line 204 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4198: @__ctrl.CssClass = "aspTextBox01";
Line 4199:
Line 4200: #line default
Line 4201: #line hidden
Line 4202: return @__ctrl;
Line 4203: }
Line 4204:
Line 4205: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4206: private void @__BuildControl__control121(System.Web.UI.Control @__ctrl) {
Line 4207: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 4208:
Line 4209: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4210: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4211:
Line 4212: #line default
Line 4213: #line hidden
Line 4214: global::System.Web.UI.WebControls.FileUpload @__ctrl1;
Line 4215:
Line 4216: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4217: @__ctrl1 = this.@__BuildControl__control122();
Line 4218:
Line 4219: #line default
Line 4220: #line hidden
Line 4221:
Line 4222: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4223: @__parser.AddParsedSubObject(@__ctrl1);
Line 4224:
Line 4225: #line default
Line 4226: #line hidden
Line 4227:
Line 4228: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4229: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4230:
Line 4231: #line default
Line 4232: #line hidden
Line 4233: }
Line 4234:
Line 4235: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4236: private global::System.Web.UI.WebControls.Label @__BuildControl__control124() {
Line 4237: global::System.Web.UI.WebControls.Label @__ctrl;
Line 4238:
Line 4239: #line 207 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4240: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 4241:
Line 4242: #line default
Line 4243: #line hidden
Line 4244: @__ctrl.TemplateControl = this;
Line 4245: @__ctrl.ApplyStyleSheetSkin(this);
Line 4246:
Line 4247: #line 207 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4248: @__ctrl.ID = "FilePathLabel";
Line 4249:
Line 4250: #line default
Line 4251: #line hidden
Line 4252:
Line 4253: #line 207 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4254: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control124);
Line 4255:
Line 4256: #line default
Line 4257: #line hidden
Line 4258: return @__ctrl;
Line 4259: }
Line 4260:
Line 4261: public void @__DataBinding__control124(object sender, System.EventArgs e) {
Line 4262: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 4263: System.Web.UI.IDataItemContainer Container;
Line 4264: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 4265: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 4266: if ((this.Page.GetDataItem() != null)) {
Line 4267:
Line 4268: #line 207 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4269: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("FilePath"), System.Globalization.CultureInfo.CurrentCulture);
Line 4270:
Line 4271: #line default
Line 4272: #line hidden
Line 4273: }
Line 4274: }
Line 4275:
Line 4276: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4277: private void @__BuildControl__control123(System.Web.UI.Control @__ctrl) {
Line 4278: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 4279:
Line 4280: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4281: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4282:
Line 4283: #line default
Line 4284: #line hidden
Line 4285: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 4286:
Line 4287: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4288: @__ctrl1 = this.@__BuildControl__control124();
Line 4289:
Line 4290: #line default
Line 4291: #line hidden
Line 4292:
Line 4293: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4294: @__parser.AddParsedSubObject(@__ctrl1);
Line 4295:
Line 4296: #line default
Line 4297: #line hidden
Line 4298:
Line 4299: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4300: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4301:
Line 4302: #line default
Line 4303: #line hidden
Line 4304: }
Line 4305:
Line 4306: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4307: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control123(System.Web.UI.Control @__container) {
Line 4308: System.Collections.Specialized.OrderedDictionary @__table;
Line 4309: System.Web.UI.WebControls.Label FilePathLabel;
Line 4310:
Line 4311: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4312: FilePathLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("FilePathLabel")));
Line 4313:
Line 4314: #line default
Line 4315: #line hidden
Line 4316:
Line 4317: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4318: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 4319:
Line 4320: #line default
Line 4321: #line hidden
Line 4322:
Line 4323: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4324: if ((FilePathLabel != null)) {
Line 4325: @__table["FilePath"] = FilePathLabel.Text;
Line 4326: }
Line 4327:
Line 4328: #line default
Line 4329: #line hidden
Line 4330: return @__table;
Line 4331: }
Line 4332:
Line 4333: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4334: private void @__BuildControl__control125(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 4335:
Line 4336: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4337: @__ctrl.CssClass = "headerWithBorder";
Line 4338:
Line 4339: #line default
Line 4340: #line hidden
Line 4341: }
Line 4342:
Line 4343: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4344: private void @__BuildControl__control126(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 4345:
Line 4346: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4347: @__ctrl.CssClass = "trWithBorder";
Line 4348:
Line 4349: #line default
Line 4350: #line hidden
Line 4351: }
Line 4352:
Line 4353: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4354: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control118() {
Line 4355: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 4356:
Line 4357: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4358: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 4359:
Line 4360: #line default
Line 4361: #line hidden
Line 4362:
Line 4363: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4364: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control119), null);
Line 4365:
Line 4366: #line default
Line 4367: #line hidden
Line 4368:
Line 4369: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4370: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control121));
Line 4371:
Line 4372: #line default
Line 4373: #line hidden
Line 4374:
Line 4375: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4376: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control123), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control123));
Line 4377:
Line 4378: #line default
Line 4379: #line hidden
Line 4380:
Line 4381: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4382: @__ctrl.HeaderText = "Document URL";
Line 4383:
Line 4384: #line default
Line 4385: #line hidden
Line 4386:
Line 4387: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4388: this.@__BuildControl__control125(@__ctrl.HeaderStyle);
Line 4389:
Line 4390: #line default
Line 4391: #line hidden
Line 4392:
Line 4393: #line 199 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4394: this.@__BuildControl__control126(@__ctrl.ItemStyle);
Line 4395:
Line 4396: #line default
Line 4397: #line hidden
Line 4398: return @__ctrl;
Line 4399: }
Line 4400:
Line 4401: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4402: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control129() {
Line 4403: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 4404:
Line 4405: #line 214 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4406: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 4407:
Line 4408: #line default
Line 4409: #line hidden
Line 4410: @__ctrl.TemplateControl = this;
Line 4411: @__ctrl.ApplyStyleSheetSkin(this);
Line 4412:
Line 4413: #line 214 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4414: @__ctrl.ID = "txtFileVersion";
Line 4415:
Line 4416: #line default
Line 4417: #line hidden
Line 4418:
Line 4419: #line 214 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4420: @__ctrl.CssClass = "aspTextBox01";
Line 4421:
Line 4422: #line default
Line 4423: #line hidden
Line 4424:
Line 4425: #line 214 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4426: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control129);
Line 4427:
Line 4428: #line default
Line 4429: #line hidden
Line 4430: return @__ctrl;
Line 4431: }
Line 4432:
Line 4433: public void @__DataBinding__control129(object sender, System.EventArgs e) {
Line 4434: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 4435: System.Web.UI.IDataItemContainer Container;
Line 4436: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 4437: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 4438: if ((this.Page.GetDataItem() != null)) {
Line 4439:
Line 4440: #line 214 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4441: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("FileVersion"), System.Globalization.CultureInfo.CurrentCulture);
Line 4442:
Line 4443: #line default
Line 4444: #line hidden
Line 4445: }
Line 4446: }
Line 4447:
Line 4448: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4449: private void @__BuildControl__control128(System.Web.UI.Control @__ctrl) {
Line 4450: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 4451:
Line 4452: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4453: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4454:
Line 4455: #line default
Line 4456: #line hidden
Line 4457: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 4458:
Line 4459: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4460: @__ctrl1 = this.@__BuildControl__control129();
Line 4461:
Line 4462: #line default
Line 4463: #line hidden
Line 4464:
Line 4465: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4466: @__parser.AddParsedSubObject(@__ctrl1);
Line 4467:
Line 4468: #line default
Line 4469: #line hidden
Line 4470:
Line 4471: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4472: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4473:
Line 4474: #line default
Line 4475: #line hidden
Line 4476: }
Line 4477:
Line 4478: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4479: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control128(System.Web.UI.Control @__container) {
Line 4480: System.Collections.Specialized.OrderedDictionary @__table;
Line 4481: System.Web.UI.WebControls.TextBox txtFileVersion;
Line 4482:
Line 4483: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4484: txtFileVersion = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtFileVersion")));
Line 4485:
Line 4486: #line default
Line 4487: #line hidden
Line 4488:
Line 4489: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4490: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 4491:
Line 4492: #line default
Line 4493: #line hidden
Line 4494:
Line 4495: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4496: if ((txtFileVersion != null)) {
Line 4497: @__table["FileVersion"] = txtFileVersion.Text;
Line 4498: }
Line 4499:
Line 4500: #line default
Line 4501: #line hidden
Line 4502: return @__table;
Line 4503: }
Line 4504:
Line 4505: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4506: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control131() {
Line 4507: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 4508:
Line 4509: #line 217 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4510: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 4511:
Line 4512: #line default
Line 4513: #line hidden
Line 4514: @__ctrl.TemplateControl = this;
Line 4515: @__ctrl.ApplyStyleSheetSkin(this);
Line 4516:
Line 4517: #line 217 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4518: @__ctrl.ID = "txtFileVersion";
Line 4519:
Line 4520: #line default
Line 4521: #line hidden
Line 4522:
Line 4523: #line 217 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4524: @__ctrl.CssClass = "aspTextBox01";
Line 4525:
Line 4526: #line default
Line 4527: #line hidden
Line 4528: return @__ctrl;
Line 4529: }
Line 4530:
Line 4531: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4532: private void @__BuildControl__control130(System.Web.UI.Control @__ctrl) {
Line 4533: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 4534:
Line 4535: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4536: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4537:
Line 4538: #line default
Line 4539: #line hidden
Line 4540: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 4541:
Line 4542: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4543: @__ctrl1 = this.@__BuildControl__control131();
Line 4544:
Line 4545: #line default
Line 4546: #line hidden
Line 4547:
Line 4548: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4549: @__parser.AddParsedSubObject(@__ctrl1);
Line 4550:
Line 4551: #line default
Line 4552: #line hidden
Line 4553:
Line 4554: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4555: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4556:
Line 4557: #line default
Line 4558: #line hidden
Line 4559: }
Line 4560:
Line 4561: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4562: private global::System.Web.UI.WebControls.Label @__BuildControl__control133() {
Line 4563: global::System.Web.UI.WebControls.Label @__ctrl;
Line 4564:
Line 4565: #line 220 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4566: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 4567:
Line 4568: #line default
Line 4569: #line hidden
Line 4570: @__ctrl.TemplateControl = this;
Line 4571: @__ctrl.ApplyStyleSheetSkin(this);
Line 4572:
Line 4573: #line 220 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4574: @__ctrl.ID = "FileVersionLabel";
Line 4575:
Line 4576: #line default
Line 4577: #line hidden
Line 4578:
Line 4579: #line 220 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4580: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control133);
Line 4581:
Line 4582: #line default
Line 4583: #line hidden
Line 4584: return @__ctrl;
Line 4585: }
Line 4586:
Line 4587: public void @__DataBinding__control133(object sender, System.EventArgs e) {
Line 4588: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 4589: System.Web.UI.IDataItemContainer Container;
Line 4590: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 4591: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 4592: if ((this.Page.GetDataItem() != null)) {
Line 4593:
Line 4594: #line 220 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4595: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("FileVersion"), System.Globalization.CultureInfo.CurrentCulture);
Line 4596:
Line 4597: #line default
Line 4598: #line hidden
Line 4599: }
Line 4600: }
Line 4601:
Line 4602: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4603: private void @__BuildControl__control132(System.Web.UI.Control @__ctrl) {
Line 4604: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 4605:
Line 4606: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4607: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4608:
Line 4609: #line default
Line 4610: #line hidden
Line 4611: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 4612:
Line 4613: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4614: @__ctrl1 = this.@__BuildControl__control133();
Line 4615:
Line 4616: #line default
Line 4617: #line hidden
Line 4618:
Line 4619: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4620: @__parser.AddParsedSubObject(@__ctrl1);
Line 4621:
Line 4622: #line default
Line 4623: #line hidden
Line 4624:
Line 4625: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4626: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4627:
Line 4628: #line default
Line 4629: #line hidden
Line 4630: }
Line 4631:
Line 4632: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4633: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control132(System.Web.UI.Control @__container) {
Line 4634: System.Collections.Specialized.OrderedDictionary @__table;
Line 4635: System.Web.UI.WebControls.Label FileVersionLabel;
Line 4636:
Line 4637: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4638: FileVersionLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("FileVersionLabel")));
Line 4639:
Line 4640: #line default
Line 4641: #line hidden
Line 4642:
Line 4643: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4644: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 4645:
Line 4646: #line default
Line 4647: #line hidden
Line 4648:
Line 4649: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4650: if ((FileVersionLabel != null)) {
Line 4651: @__table["FileVersion"] = FileVersionLabel.Text;
Line 4652: }
Line 4653:
Line 4654: #line default
Line 4655: #line hidden
Line 4656: return @__table;
Line 4657: }
Line 4658:
Line 4659: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4660: private void @__BuildControl__control134(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 4661:
Line 4662: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4663: @__ctrl.CssClass = "headerWithBorder";
Line 4664:
Line 4665: #line default
Line 4666: #line hidden
Line 4667: }
Line 4668:
Line 4669: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4670: private void @__BuildControl__control135(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 4671:
Line 4672: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4673: @__ctrl.CssClass = "trWithBorder";
Line 4674:
Line 4675: #line default
Line 4676: #line hidden
Line 4677: }
Line 4678:
Line 4679: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4680: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control127() {
Line 4681: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 4682:
Line 4683: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4684: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 4685:
Line 4686: #line default
Line 4687: #line hidden
Line 4688:
Line 4689: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4690: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control128), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control128));
Line 4691:
Line 4692: #line default
Line 4693: #line hidden
Line 4694:
Line 4695: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4696: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control130));
Line 4697:
Line 4698: #line default
Line 4699: #line hidden
Line 4700:
Line 4701: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4702: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control132), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control132));
Line 4703:
Line 4704: #line default
Line 4705: #line hidden
Line 4706:
Line 4707: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4708: @__ctrl.HeaderText = "Document Version";
Line 4709:
Line 4710: #line default
Line 4711: #line hidden
Line 4712:
Line 4713: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4714: this.@__BuildControl__control134(@__ctrl.HeaderStyle);
Line 4715:
Line 4716: #line default
Line 4717: #line hidden
Line 4718:
Line 4719: #line 212 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4720: this.@__BuildControl__control135(@__ctrl.ItemStyle);
Line 4721:
Line 4722: #line default
Line 4723: #line hidden
Line 4724: return @__ctrl;
Line 4725: }
Line 4726:
Line 4727: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4728: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control138() {
Line 4729: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 4730:
Line 4731: #line 227 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4732: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 4733:
Line 4734: #line default
Line 4735: #line hidden
Line 4736: @__ctrl.TemplateControl = this;
Line 4737: @__ctrl.ApplyStyleSheetSkin(this);
Line 4738:
Line 4739: #line 227 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4740: @__ctrl.ID = "txtContractID";
Line 4741:
Line 4742: #line default
Line 4743: #line hidden
Line 4744:
Line 4745: #line 227 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4746: @__ctrl.CssClass = "aspTextBox01";
Line 4747:
Line 4748: #line default
Line 4749: #line hidden
Line 4750: return @__ctrl;
Line 4751: }
Line 4752:
Line 4753: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4754: private void @__BuildControl__control137(System.Web.UI.Control @__ctrl) {
Line 4755: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 4756:
Line 4757: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4758: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4759:
Line 4760: #line default
Line 4761: #line hidden
Line 4762: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 4763:
Line 4764: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4765: @__ctrl1 = this.@__BuildControl__control138();
Line 4766:
Line 4767: #line default
Line 4768: #line hidden
Line 4769:
Line 4770: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4771: @__parser.AddParsedSubObject(@__ctrl1);
Line 4772:
Line 4773: #line default
Line 4774: #line hidden
Line 4775:
Line 4776: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4777: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4778:
Line 4779: #line default
Line 4780: #line hidden
Line 4781: }
Line 4782:
Line 4783: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4784: private global::System.Web.UI.WebControls.Label @__BuildControl__control140() {
Line 4785: global::System.Web.UI.WebControls.Label @__ctrl;
Line 4786:
Line 4787: #line 230 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4788: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 4789:
Line 4790: #line default
Line 4791: #line hidden
Line 4792: @__ctrl.TemplateControl = this;
Line 4793: @__ctrl.ApplyStyleSheetSkin(this);
Line 4794:
Line 4795: #line 230 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4796: @__ctrl.ID = "ContractIDLabel";
Line 4797:
Line 4798: #line default
Line 4799: #line hidden
Line 4800:
Line 4801: #line 230 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4802: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control140);
Line 4803:
Line 4804: #line default
Line 4805: #line hidden
Line 4806: return @__ctrl;
Line 4807: }
Line 4808:
Line 4809: public void @__DataBinding__control140(object sender, System.EventArgs e) {
Line 4810: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 4811: System.Web.UI.IDataItemContainer Container;
Line 4812: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 4813: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 4814:
Line 4815: #line 230 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4816: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString( Eval("ContractID") , System.Globalization.CultureInfo.CurrentCulture);
Line 4817:
Line 4818: #line default
Line 4819: #line hidden
Line 4820: }
Line 4821:
Line 4822: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4823: private void @__BuildControl__control139(System.Web.UI.Control @__ctrl) {
Line 4824: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 4825:
Line 4826: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4827: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4828:
Line 4829: #line default
Line 4830: #line hidden
Line 4831: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 4832:
Line 4833: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4834: @__ctrl1 = this.@__BuildControl__control140();
Line 4835:
Line 4836: #line default
Line 4837: #line hidden
Line 4838:
Line 4839: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4840: @__parser.AddParsedSubObject(@__ctrl1);
Line 4841:
Line 4842: #line default
Line 4843: #line hidden
Line 4844:
Line 4845: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4846: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 4847:
Line 4848: #line default
Line 4849: #line hidden
Line 4850: }
Line 4851:
Line 4852: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4853: private void @__BuildControl__control141(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 4854:
Line 4855: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4856: @__ctrl.CssClass = "headerWithBorder";
Line 4857:
Line 4858: #line default
Line 4859: #line hidden
Line 4860: }
Line 4861:
Line 4862: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4863: private void @__BuildControl__control142(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 4864:
Line 4865: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4866: @__ctrl.CssClass = "trWithBorder";
Line 4867:
Line 4868: #line default
Line 4869: #line hidden
Line 4870: }
Line 4871:
Line 4872: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4873: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control136() {
Line 4874: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 4875:
Line 4876: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4877: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 4878:
Line 4879: #line default
Line 4880: #line hidden
Line 4881:
Line 4882: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4883: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control137));
Line 4884:
Line 4885: #line default
Line 4886: #line hidden
Line 4887:
Line 4888: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4889: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control139), null);
Line 4890:
Line 4891: #line default
Line 4892: #line hidden
Line 4893:
Line 4894: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4895: @__ctrl.HeaderText = "Contract ID";
Line 4896:
Line 4897: #line default
Line 4898: #line hidden
Line 4899:
Line 4900: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4901: this.@__BuildControl__control141(@__ctrl.HeaderStyle);
Line 4902:
Line 4903: #line default
Line 4904: #line hidden
Line 4905:
Line 4906: #line 225 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4907: this.@__BuildControl__control142(@__ctrl.ItemStyle);
Line 4908:
Line 4909: #line default
Line 4910: #line hidden
Line 4911: return @__ctrl;
Line 4912: }
Line 4913:
Line 4914: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 4915: private void @__BuildControl__control77(System.Web.UI.WebControls.DataControlFieldCollection @__ctrl) {
Line 4916: global::System.Web.UI.WebControls.TemplateField @__ctrl1;
Line 4917:
Line 4918: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4919: @__ctrl1 = this.@__BuildControl__control78();
Line 4920:
Line 4921: #line default
Line 4922: #line hidden
Line 4923:
Line 4924: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4925: @__ctrl.Add(@__ctrl1);
Line 4926:
Line 4927: #line default
Line 4928: #line hidden
Line 4929: global::System.Web.UI.WebControls.TemplateField @__ctrl2;
Line 4930:
Line 4931: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4932: @__ctrl2 = this.@__BuildControl__control85();
Line 4933:
Line 4934: #line default
Line 4935: #line hidden
Line 4936:
Line 4937: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4938: @__ctrl.Add(@__ctrl2);
Line 4939:
Line 4940: #line default
Line 4941: #line hidden
Line 4942: global::System.Web.UI.WebControls.TemplateField @__ctrl3;
Line 4943:
Line 4944: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4945: @__ctrl3 = this.@__BuildControl__control95();
Line 4946:
Line 4947: #line default
Line 4948: #line hidden
Line 4949:
Line 4950: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4951: @__ctrl.Add(@__ctrl3);
Line 4952:
Line 4953: #line default
Line 4954: #line hidden
Line 4955: global::System.Web.UI.WebControls.TemplateField @__ctrl4;
Line 4956:
Line 4957: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4958: @__ctrl4 = this.@__BuildControl__control100();
Line 4959:
Line 4960: #line default
Line 4961: #line hidden
Line 4962:
Line 4963: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4964: @__ctrl.Add(@__ctrl4);
Line 4965:
Line 4966: #line default
Line 4967: #line hidden
Line 4968: global::System.Web.UI.WebControls.TemplateField @__ctrl5;
Line 4969:
Line 4970: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4971: @__ctrl5 = this.@__BuildControl__control109();
Line 4972:
Line 4973: #line default
Line 4974: #line hidden
Line 4975:
Line 4976: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4977: @__ctrl.Add(@__ctrl5);
Line 4978:
Line 4979: #line default
Line 4980: #line hidden
Line 4981: global::System.Web.UI.WebControls.TemplateField @__ctrl6;
Line 4982:
Line 4983: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4984: @__ctrl6 = this.@__BuildControl__control118();
Line 4985:
Line 4986: #line default
Line 4987: #line hidden
Line 4988:
Line 4989: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4990: @__ctrl.Add(@__ctrl6);
Line 4991:
Line 4992: #line default
Line 4993: #line hidden
Line 4994: global::System.Web.UI.WebControls.TemplateField @__ctrl7;
Line 4995:
Line 4996: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 4997: @__ctrl7 = this.@__BuildControl__control127();
Line 4998:
Line 4999: #line default
Line 5000: #line hidden
Line 5001:
Line 5002: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5003: @__ctrl.Add(@__ctrl7);
Line 5004:
Line 5005: #line default
Line 5006: #line hidden
Line 5007: global::System.Web.UI.WebControls.TemplateField @__ctrl8;
Line 5008:
Line 5009: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5010: @__ctrl8 = this.@__BuildControl__control136();
Line 5011:
Line 5012: #line default
Line 5013: #line hidden
Line 5014:
Line 5015: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5016: @__ctrl.Add(@__ctrl8);
Line 5017:
Line 5018: #line default
Line 5019: #line hidden
Line 5020: }
Line 5021:
Line 5022: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5023: private global::System.Web.UI.WebControls.GridView @__BuildControlgvUploadedDocuments() {
Line 5024: global::System.Web.UI.WebControls.GridView @__ctrl;
Line 5025:
Line 5026: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5027: @__ctrl = new global::System.Web.UI.WebControls.GridView();
Line 5028:
Line 5029: #line default
Line 5030: #line hidden
Line 5031: this.gvUploadedDocuments = @__ctrl;
Line 5032: @__ctrl.TemplateControl = this;
Line 5033: @__ctrl.ApplyStyleSheetSkin(this);
Line 5034:
Line 5035: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5036: @__ctrl.ID = "gvUploadedDocuments";
Line 5037:
Line 5038: #line default
Line 5039: #line hidden
Line 5040:
Line 5041: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5042: @__ctrl.AutoGenerateColumns = false;
Line 5043:
Line 5044: #line default
Line 5045: #line hidden
Line 5046:
Line 5047: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5048: @__ctrl.ShowFooter = true;
Line 5049:
Line 5050: #line default
Line 5051: #line hidden
Line 5052:
Line 5053: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5054: @__ctrl.AllowPaging = true;
Line 5055:
Line 5056: #line default
Line 5057: #line hidden
Line 5058:
Line 5059: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5060: @__ctrl.CssClass = "tableWithBorder";
Line 5061:
Line 5062: #line default
Line 5063: #line hidden
Line 5064:
Line 5065: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5066: @__ctrl.Height = new System.Web.UI.WebControls.Unit(195, System.Web.UI.WebControls.UnitType.Pixel);
Line 5067:
Line 5068: #line default
Line 5069: #line hidden
Line 5070:
Line 5071: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5072: @__ctrl.PageSize = 5;
Line 5073:
Line 5074: #line default
Line 5075: #line hidden
Line 5076:
Line 5077: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5078: @__ctrl.DataKeyNames = new string[] {
Line 5079: "uploadedDocID"};
Line 5080:
Line 5081: #line default
Line 5082: #line hidden
Line 5083:
Line 5084: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5085: this.@__BuildControl__control77(@__ctrl.Columns);
Line 5086:
Line 5087: #line default
Line 5088: #line hidden
Line 5089:
Line 5090: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5091: @__ctrl.RowCommand += new System.Web.UI.WebControls.GridViewCommandEventHandler(this.gvUploadedDocuments_RowCommand);
Line 5092:
Line 5093: #line default
Line 5094: #line hidden
Line 5095:
Line 5096: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5097: @__ctrl.RowCreated += new System.Web.UI.WebControls.GridViewRowEventHandler(this.gvUploadedDocuments_RowCreated);
Line 5098:
Line 5099: #line default
Line 5100: #line hidden
Line 5101:
Line 5102: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5103: @__ctrl.RowDeleting += new System.Web.UI.WebControls.GridViewDeleteEventHandler(this.gvUploadedDocuments_RowDeleting);
Line 5104:
Line 5105: #line default
Line 5106: #line hidden
Line 5107:
Line 5108: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5109: @__ctrl.PageIndexChanging += new System.Web.UI.WebControls.GridViewPageEventHandler(this.gvUploadedDocuments_PageIndexChanging);
Line 5110:
Line 5111: #line default
Line 5112: #line hidden
Line 5113:
Line 5114: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5115: @__ctrl.RowCancelingEdit += new System.Web.UI.WebControls.GridViewCancelEditEventHandler(this.gvUploadedDocuments_RowCancelingEdit);
Line 5116:
Line 5117: #line default
Line 5118: #line hidden
Line 5119:
Line 5120: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5121: @__ctrl.RowEditing += new System.Web.UI.WebControls.GridViewEditEventHandler(this.gvUploadedDocuments_RowEditing);
Line 5122:
Line 5123: #line default
Line 5124: #line hidden
Line 5125:
Line 5126: #line 128 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5127: @__ctrl.RowUpdating += new System.Web.UI.WebControls.GridViewUpdateEventHandler(this.gvUploadedDocuments_RowUpdating);
Line 5128:
Line 5129: #line default
Line 5130: #line hidden
Line 5131: return @__ctrl;
Line 5132: }
Line 5133:
Line 5134: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5135: private global::System.Web.UI.WebControls.CheckBox @__BuildControl__control146() {
Line 5136: global::System.Web.UI.WebControls.CheckBox @__ctrl;
Line 5137:
Line 5138: #line 249 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5139: @__ctrl = new global::System.Web.UI.WebControls.CheckBox();
Line 5140:
Line 5141: #line default
Line 5142: #line hidden
Line 5143: @__ctrl.TemplateControl = this;
Line 5144: @__ctrl.ApplyStyleSheetSkin(this);
Line 5145:
Line 5146: #line 249 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5147: @__ctrl.ID = "chkSelectAll";
Line 5148:
Line 5149: #line default
Line 5150: #line hidden
Line 5151:
Line 5152: #line 249 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5153: @__ctrl.AutoPostBack = true;
Line 5154:
Line 5155: #line default
Line 5156: #line hidden
Line 5157: return @__ctrl;
Line 5158: }
Line 5159:
Line 5160: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5161: private void @__BuildControl__control145(System.Web.UI.Control @__ctrl) {
Line 5162: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 5163:
Line 5164: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5165: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5166:
Line 5167: #line default
Line 5168: #line hidden
Line 5169: global::System.Web.UI.WebControls.CheckBox @__ctrl1;
Line 5170:
Line 5171: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5172: @__ctrl1 = this.@__BuildControl__control146();
Line 5173:
Line 5174: #line default
Line 5175: #line hidden
Line 5176:
Line 5177: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5178: @__parser.AddParsedSubObject(@__ctrl1);
Line 5179:
Line 5180: #line default
Line 5181: #line hidden
Line 5182:
Line 5183: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5184: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5185:
Line 5186: #line default
Line 5187: #line hidden
Line 5188: }
Line 5189:
Line 5190: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5191: private global::System.Web.UI.WebControls.CheckBox @__BuildControl__control148() {
Line 5192: global::System.Web.UI.WebControls.CheckBox @__ctrl;
Line 5193:
Line 5194: #line 252 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5195: @__ctrl = new global::System.Web.UI.WebControls.CheckBox();
Line 5196:
Line 5197: #line default
Line 5198: #line hidden
Line 5199: @__ctrl.TemplateControl = this;
Line 5200: @__ctrl.ApplyStyleSheetSkin(this);
Line 5201:
Line 5202: #line 252 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5203: @__ctrl.ID = "selected";
Line 5204:
Line 5205: #line default
Line 5206: #line hidden
Line 5207: return @__ctrl;
Line 5208: }
Line 5209:
Line 5210: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5211: private void @__BuildControl__control147(System.Web.UI.Control @__ctrl) {
Line 5212: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 5213:
Line 5214: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5215: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5216:
Line 5217: #line default
Line 5218: #line hidden
Line 5219: global::System.Web.UI.WebControls.CheckBox @__ctrl1;
Line 5220:
Line 5221: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5222: @__ctrl1 = this.@__BuildControl__control148();
Line 5223:
Line 5224: #line default
Line 5225: #line hidden
Line 5226:
Line 5227: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5228: @__parser.AddParsedSubObject(@__ctrl1);
Line 5229:
Line 5230: #line default
Line 5231: #line hidden
Line 5232:
Line 5233: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5234: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5235:
Line 5236: #line default
Line 5237: #line hidden
Line 5238: }
Line 5239:
Line 5240: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5241: private void @__BuildControl__control149(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 5242:
Line 5243: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5244: @__ctrl.CssClass = "headerWithBorder";
Line 5245:
Line 5246: #line default
Line 5247: #line hidden
Line 5248: }
Line 5249:
Line 5250: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5251: private void @__BuildControl__control150(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 5252:
Line 5253: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5254: @__ctrl.CssClass = "trWithBorder";
Line 5255:
Line 5256: #line default
Line 5257: #line hidden
Line 5258: }
Line 5259:
Line 5260: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5261: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control144() {
Line 5262: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 5263:
Line 5264: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5265: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 5266:
Line 5267: #line default
Line 5268: #line hidden
Line 5269:
Line 5270: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5271: @__ctrl.HeaderTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control145));
Line 5272:
Line 5273: #line default
Line 5274: #line hidden
Line 5275:
Line 5276: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5277: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control147), null);
Line 5278:
Line 5279: #line default
Line 5280: #line hidden
Line 5281:
Line 5282: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5283: this.@__BuildControl__control149(@__ctrl.HeaderStyle);
Line 5284:
Line 5285: #line default
Line 5286: #line hidden
Line 5287:
Line 5288: #line 247 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5289: this.@__BuildControl__control150(@__ctrl.ItemStyle);
Line 5290:
Line 5291: #line default
Line 5292: #line hidden
Line 5293: return @__ctrl;
Line 5294: }
Line 5295:
Line 5296: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5297: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control153() {
Line 5298: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 5299:
Line 5300: #line 259 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5301: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 5302:
Line 5303: #line default
Line 5304: #line hidden
Line 5305: @__ctrl.TemplateControl = this;
Line 5306: @__ctrl.ApplyStyleSheetSkin(this);
Line 5307:
Line 5308: #line 259 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5309: @__ctrl.ID = "UpdateLinkBtn";
Line 5310:
Line 5311: #line default
Line 5312: #line hidden
Line 5313:
Line 5314: #line 259 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5315: @__ctrl.CausesValidation = true;
Line 5316:
Line 5317: #line default
Line 5318: #line hidden
Line 5319:
Line 5320: #line 259 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5321: @__ctrl.CommandName = "Update";
Line 5322:
Line 5323: #line default
Line 5324: #line hidden
Line 5325:
Line 5326: #line 259 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5327: @__ctrl.Text = "Update";
Line 5328:
Line 5329: #line default
Line 5330: #line hidden
Line 5331: return @__ctrl;
Line 5332: }
Line 5333:
Line 5334: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5335: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control154() {
Line 5336: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 5337:
Line 5338: #line 261 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5339: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 5340:
Line 5341: #line default
Line 5342: #line hidden
Line 5343: @__ctrl.TemplateControl = this;
Line 5344: @__ctrl.ApplyStyleSheetSkin(this);
Line 5345:
Line 5346: #line 261 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5347: @__ctrl.ID = "CancelLinkBtn";
Line 5348:
Line 5349: #line default
Line 5350: #line hidden
Line 5351:
Line 5352: #line 261 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5353: @__ctrl.CausesValidation = false;
Line 5354:
Line 5355: #line default
Line 5356: #line hidden
Line 5357:
Line 5358: #line 261 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5359: @__ctrl.CommandName = "Cancel";
Line 5360:
Line 5361: #line default
Line 5362: #line hidden
Line 5363:
Line 5364: #line 261 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5365: @__ctrl.Text = "Cancel";
Line 5366:
Line 5367: #line default
Line 5368: #line hidden
Line 5369: return @__ctrl;
Line 5370: }
Line 5371:
Line 5372: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5373: private void @__BuildControl__control152(System.Web.UI.Control @__ctrl) {
Line 5374: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 5375:
Line 5376: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5377: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5378:
Line 5379: #line default
Line 5380: #line hidden
Line 5381: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 5382:
Line 5383: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5384: @__ctrl1 = this.@__BuildControl__control153();
Line 5385:
Line 5386: #line default
Line 5387: #line hidden
Line 5388:
Line 5389: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5390: @__parser.AddParsedSubObject(@__ctrl1);
Line 5391:
Line 5392: #line default
Line 5393: #line hidden
Line 5394:
Line 5395: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5396: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5397:
Line 5398: #line default
Line 5399: #line hidden
Line 5400: global::System.Web.UI.WebControls.LinkButton @__ctrl2;
Line 5401:
Line 5402: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5403: @__ctrl2 = this.@__BuildControl__control154();
Line 5404:
Line 5405: #line default
Line 5406: #line hidden
Line 5407:
Line 5408: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5409: @__parser.AddParsedSubObject(@__ctrl2);
Line 5410:
Line 5411: #line default
Line 5412: #line hidden
Line 5413:
Line 5414: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5415: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5416:
Line 5417: #line default
Line 5418: #line hidden
Line 5419: }
Line 5420:
Line 5421: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5422: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control156() {
Line 5423: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 5424:
Line 5425: #line 265 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5426: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 5427:
Line 5428: #line default
Line 5429: #line hidden
Line 5430: @__ctrl.TemplateControl = this;
Line 5431: @__ctrl.ApplyStyleSheetSkin(this);
Line 5432:
Line 5433: #line 265 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5434: @__ctrl.ID = "AddNewLinkBtn";
Line 5435:
Line 5436: #line default
Line 5437: #line hidden
Line 5438:
Line 5439: #line 265 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5440: @__ctrl.CausesValidation = false;
Line 5441:
Line 5442: #line default
Line 5443: #line hidden
Line 5444:
Line 5445: #line 265 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5446: @__ctrl.CommandName = "AddNew2";
Line 5447:
Line 5448: #line default
Line 5449: #line hidden
Line 5450:
Line 5451: #line 265 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5452: @__ctrl.Text = "Add New";
Line 5453:
Line 5454: #line default
Line 5455: #line hidden
Line 5456: return @__ctrl;
Line 5457: }
Line 5458:
Line 5459: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5460: private void @__BuildControl__control155(System.Web.UI.Control @__ctrl) {
Line 5461: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 5462:
Line 5463: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5464: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5465:
Line 5466: #line default
Line 5467: #line hidden
Line 5468: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 5469:
Line 5470: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5471: @__ctrl1 = this.@__BuildControl__control156();
Line 5472:
Line 5473: #line default
Line 5474: #line hidden
Line 5475:
Line 5476: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5477: @__parser.AddParsedSubObject(@__ctrl1);
Line 5478:
Line 5479: #line default
Line 5480: #line hidden
Line 5481:
Line 5482: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5483: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5484:
Line 5485: #line default
Line 5486: #line hidden
Line 5487: }
Line 5488:
Line 5489: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5490: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control158() {
Line 5491: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 5492:
Line 5493: #line 269 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5494: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 5495:
Line 5496: #line default
Line 5497: #line hidden
Line 5498: @__ctrl.TemplateControl = this;
Line 5499: @__ctrl.ApplyStyleSheetSkin(this);
Line 5500:
Line 5501: #line 269 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5502: @__ctrl.ID = "EditLinkBtn";
Line 5503:
Line 5504: #line default
Line 5505: #line hidden
Line 5506:
Line 5507: #line 269 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5508: @__ctrl.CausesValidation = false;
Line 5509:
Line 5510: #line default
Line 5511: #line hidden
Line 5512:
Line 5513: #line 269 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5514: @__ctrl.CommandName = "Edit";
Line 5515:
Line 5516: #line default
Line 5517: #line hidden
Line 5518:
Line 5519: #line 269 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5520: @__ctrl.Text = "Edit";
Line 5521:
Line 5522: #line default
Line 5523: #line hidden
Line 5524: return @__ctrl;
Line 5525: }
Line 5526:
Line 5527: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5528: private void @__BuildControl__control157(System.Web.UI.Control @__ctrl) {
Line 5529: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 5530:
Line 5531: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5532: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5533:
Line 5534: #line default
Line 5535: #line hidden
Line 5536: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 5537:
Line 5538: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5539: @__ctrl1 = this.@__BuildControl__control158();
Line 5540:
Line 5541: #line default
Line 5542: #line hidden
Line 5543:
Line 5544: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5545: @__parser.AddParsedSubObject(@__ctrl1);
Line 5546:
Line 5547: #line default
Line 5548: #line hidden
Line 5549:
Line 5550: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5551: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5552:
Line 5553: #line default
Line 5554: #line hidden
Line 5555: }
Line 5556:
Line 5557: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5558: private void @__BuildControl__control159(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 5559:
Line 5560: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5561: @__ctrl.CssClass = "headerWithBorder";
Line 5562:
Line 5563: #line default
Line 5564: #line hidden
Line 5565: }
Line 5566:
Line 5567: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5568: private void @__BuildControl__control160(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 5569:
Line 5570: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5571: @__ctrl.CssClass = "trWithBorder";
Line 5572:
Line 5573: #line default
Line 5574: #line hidden
Line 5575: }
Line 5576:
Line 5577: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5578: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control151() {
Line 5579: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 5580:
Line 5581: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5582: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 5583:
Line 5584: #line default
Line 5585: #line hidden
Line 5586:
Line 5587: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5588: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control152), null);
Line 5589:
Line 5590: #line default
Line 5591: #line hidden
Line 5592:
Line 5593: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5594: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control155));
Line 5595:
Line 5596: #line default
Line 5597: #line hidden
Line 5598:
Line 5599: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5600: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control157), null);
Line 5601:
Line 5602: #line default
Line 5603: #line hidden
Line 5604:
Line 5605: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5606: @__ctrl.HeaderText = "Edit";
Line 5607:
Line 5608: #line default
Line 5609: #line hidden
Line 5610:
Line 5611: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5612: @__ctrl.ShowHeader = false;
Line 5613:
Line 5614: #line default
Line 5615: #line hidden
Line 5616:
Line 5617: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5618: this.@__BuildControl__control159(@__ctrl.HeaderStyle);
Line 5619:
Line 5620: #line default
Line 5621: #line hidden
Line 5622:
Line 5623: #line 257 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5624: this.@__BuildControl__control160(@__ctrl.ItemStyle);
Line 5625:
Line 5626: #line default
Line 5627: #line hidden
Line 5628: return @__ctrl;
Line 5629: }
Line 5630:
Line 5631: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5632: private global::System.Web.UI.WebControls.LinkButton @__BuildControl__control163() {
Line 5633: global::System.Web.UI.WebControls.LinkButton @__ctrl;
Line 5634:
Line 5635: #line 277 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5636: @__ctrl = new global::System.Web.UI.WebControls.LinkButton();
Line 5637:
Line 5638: #line default
Line 5639: #line hidden
Line 5640: @__ctrl.TemplateControl = this;
Line 5641: @__ctrl.ApplyStyleSheetSkin(this);
Line 5642:
Line 5643: #line 277 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5644: @__ctrl.ID = "DeleteLinkBtn";
Line 5645:
Line 5646: #line default
Line 5647: #line hidden
Line 5648:
Line 5649: #line 277 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5650: @__ctrl.CausesValidation = false;
Line 5651:
Line 5652: #line default
Line 5653: #line hidden
Line 5654:
Line 5655: #line 277 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5656: @__ctrl.CommandName = "Delete";
Line 5657:
Line 5658: #line default
Line 5659: #line hidden
Line 5660:
Line 5661: #line 277 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5662: @__ctrl.Text = "Delete";
Line 5663:
Line 5664: #line default
Line 5665: #line hidden
Line 5666: return @__ctrl;
Line 5667: }
Line 5668:
Line 5669: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5670: private void @__BuildControl__control162(System.Web.UI.Control @__ctrl) {
Line 5671: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 5672:
Line 5673: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5674: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5675:
Line 5676: #line default
Line 5677: #line hidden
Line 5678: global::System.Web.UI.WebControls.LinkButton @__ctrl1;
Line 5679:
Line 5680: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5681: @__ctrl1 = this.@__BuildControl__control163();
Line 5682:
Line 5683: #line default
Line 5684: #line hidden
Line 5685:
Line 5686: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5687: @__parser.AddParsedSubObject(@__ctrl1);
Line 5688:
Line 5689: #line default
Line 5690: #line hidden
Line 5691:
Line 5692: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5693: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5694:
Line 5695: #line default
Line 5696: #line hidden
Line 5697: }
Line 5698:
Line 5699: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5700: private void @__BuildControl__control164(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 5701:
Line 5702: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5703: @__ctrl.CssClass = "headerWithBorder";
Line 5704:
Line 5705: #line default
Line 5706: #line hidden
Line 5707: }
Line 5708:
Line 5709: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5710: private void @__BuildControl__control165(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 5711:
Line 5712: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5713: @__ctrl.CssClass = "trWithBorder";
Line 5714:
Line 5715: #line default
Line 5716: #line hidden
Line 5717: }
Line 5718:
Line 5719: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5720: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control161() {
Line 5721: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 5722:
Line 5723: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5724: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 5725:
Line 5726: #line default
Line 5727: #line hidden
Line 5728:
Line 5729: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5730: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control162), null);
Line 5731:
Line 5732: #line default
Line 5733: #line hidden
Line 5734:
Line 5735: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5736: @__ctrl.HeaderText = "Delete";
Line 5737:
Line 5738: #line default
Line 5739: #line hidden
Line 5740:
Line 5741: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5742: @__ctrl.ShowHeader = false;
Line 5743:
Line 5744: #line default
Line 5745: #line hidden
Line 5746:
Line 5747: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5748: this.@__BuildControl__control164(@__ctrl.HeaderStyle);
Line 5749:
Line 5750: #line default
Line 5751: #line hidden
Line 5752:
Line 5753: #line 275 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5754: this.@__BuildControl__control165(@__ctrl.ItemStyle);
Line 5755:
Line 5756: #line default
Line 5757: #line hidden
Line 5758: return @__ctrl;
Line 5759: }
Line 5760:
Line 5761: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5762: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control168() {
Line 5763: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 5764:
Line 5765: #line 285 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5766: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 5767:
Line 5768: #line default
Line 5769: #line hidden
Line 5770: @__ctrl.TemplateControl = this;
Line 5771: @__ctrl.ApplyStyleSheetSkin(this);
Line 5772:
Line 5773: #line 285 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5774: @__ctrl.ID = "txtItem";
Line 5775:
Line 5776: #line default
Line 5777: #line hidden
Line 5778:
Line 5779: #line 285 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5780: @__ctrl.CssClass = "aspTextBox01";
Line 5781:
Line 5782: #line default
Line 5783: #line hidden
Line 5784:
Line 5785: #line 285 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5786: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control168);
Line 5787:
Line 5788: #line default
Line 5789: #line hidden
Line 5790: return @__ctrl;
Line 5791: }
Line 5792:
Line 5793: public void @__DataBinding__control168(object sender, System.EventArgs e) {
Line 5794: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 5795: System.Web.UI.IDataItemContainer Container;
Line 5796: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 5797: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 5798: if ((this.Page.GetDataItem() != null)) {
Line 5799:
Line 5800: #line 285 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5801: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("Item"), System.Globalization.CultureInfo.CurrentCulture);
Line 5802:
Line 5803: #line default
Line 5804: #line hidden
Line 5805: }
Line 5806: }
Line 5807:
Line 5808: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5809: private void @__BuildControl__control167(System.Web.UI.Control @__ctrl) {
Line 5810: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 5811:
Line 5812: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5813: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5814:
Line 5815: #line default
Line 5816: #line hidden
Line 5817: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 5818:
Line 5819: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5820: @__ctrl1 = this.@__BuildControl__control168();
Line 5821:
Line 5822: #line default
Line 5823: #line hidden
Line 5824:
Line 5825: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5826: @__parser.AddParsedSubObject(@__ctrl1);
Line 5827:
Line 5828: #line default
Line 5829: #line hidden
Line 5830:
Line 5831: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5832: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5833:
Line 5834: #line default
Line 5835: #line hidden
Line 5836: }
Line 5837:
Line 5838: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5839: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control167(System.Web.UI.Control @__container) {
Line 5840: System.Collections.Specialized.OrderedDictionary @__table;
Line 5841: System.Web.UI.WebControls.TextBox txtItem;
Line 5842:
Line 5843: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5844: txtItem = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtItem")));
Line 5845:
Line 5846: #line default
Line 5847: #line hidden
Line 5848:
Line 5849: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5850: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 5851:
Line 5852: #line default
Line 5853: #line hidden
Line 5854:
Line 5855: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5856: if ((txtItem != null)) {
Line 5857: @__table["Item"] = txtItem.Text;
Line 5858: }
Line 5859:
Line 5860: #line default
Line 5861: #line hidden
Line 5862: return @__table;
Line 5863: }
Line 5864:
Line 5865: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5866: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control170() {
Line 5867: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 5868:
Line 5869: #line 288 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5870: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 5871:
Line 5872: #line default
Line 5873: #line hidden
Line 5874: @__ctrl.TemplateControl = this;
Line 5875: @__ctrl.ApplyStyleSheetSkin(this);
Line 5876:
Line 5877: #line 288 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5878: @__ctrl.ID = "txtItem";
Line 5879:
Line 5880: #line default
Line 5881: #line hidden
Line 5882:
Line 5883: #line 288 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5884: @__ctrl.CssClass = "aspTextBox01";
Line 5885:
Line 5886: #line default
Line 5887: #line hidden
Line 5888: return @__ctrl;
Line 5889: }
Line 5890:
Line 5891: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5892: private void @__BuildControl__control169(System.Web.UI.Control @__ctrl) {
Line 5893: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 5894:
Line 5895: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5896: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5897:
Line 5898: #line default
Line 5899: #line hidden
Line 5900: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 5901:
Line 5902: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5903: @__ctrl1 = this.@__BuildControl__control170();
Line 5904:
Line 5905: #line default
Line 5906: #line hidden
Line 5907:
Line 5908: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5909: @__parser.AddParsedSubObject(@__ctrl1);
Line 5910:
Line 5911: #line default
Line 5912: #line hidden
Line 5913:
Line 5914: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5915: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5916:
Line 5917: #line default
Line 5918: #line hidden
Line 5919: }
Line 5920:
Line 5921: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5922: private global::System.Web.UI.WebControls.Label @__BuildControl__control172() {
Line 5923: global::System.Web.UI.WebControls.Label @__ctrl;
Line 5924:
Line 5925: #line 291 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5926: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 5927:
Line 5928: #line default
Line 5929: #line hidden
Line 5930: @__ctrl.TemplateControl = this;
Line 5931: @__ctrl.ApplyStyleSheetSkin(this);
Line 5932:
Line 5933: #line 291 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5934: @__ctrl.ID = "ItemLabel";
Line 5935:
Line 5936: #line default
Line 5937: #line hidden
Line 5938:
Line 5939: #line 291 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5940: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control172);
Line 5941:
Line 5942: #line default
Line 5943: #line hidden
Line 5944: return @__ctrl;
Line 5945: }
Line 5946:
Line 5947: public void @__DataBinding__control172(object sender, System.EventArgs e) {
Line 5948: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 5949: System.Web.UI.IDataItemContainer Container;
Line 5950: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 5951: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 5952: if ((this.Page.GetDataItem() != null)) {
Line 5953:
Line 5954: #line 291 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5955: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("Item"), System.Globalization.CultureInfo.CurrentCulture);
Line 5956:
Line 5957: #line default
Line 5958: #line hidden
Line 5959: }
Line 5960: }
Line 5961:
Line 5962: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5963: private void @__BuildControl__control171(System.Web.UI.Control @__ctrl) {
Line 5964: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 5965:
Line 5966: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5967: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5968:
Line 5969: #line default
Line 5970: #line hidden
Line 5971: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 5972:
Line 5973: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5974: @__ctrl1 = this.@__BuildControl__control172();
Line 5975:
Line 5976: #line default
Line 5977: #line hidden
Line 5978:
Line 5979: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5980: @__parser.AddParsedSubObject(@__ctrl1);
Line 5981:
Line 5982: #line default
Line 5983: #line hidden
Line 5984:
Line 5985: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5986: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 5987:
Line 5988: #line default
Line 5989: #line hidden
Line 5990: }
Line 5991:
Line 5992: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 5993: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control171(System.Web.UI.Control @__container) {
Line 5994: System.Collections.Specialized.OrderedDictionary @__table;
Line 5995: System.Web.UI.WebControls.Label ItemLabel;
Line 5996:
Line 5997: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 5998: ItemLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("ItemLabel")));
Line 5999:
Line 6000: #line default
Line 6001: #line hidden
Line 6002:
Line 6003: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6004: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 6005:
Line 6006: #line default
Line 6007: #line hidden
Line 6008:
Line 6009: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6010: if ((ItemLabel != null)) {
Line 6011: @__table["Item"] = ItemLabel.Text;
Line 6012: }
Line 6013:
Line 6014: #line default
Line 6015: #line hidden
Line 6016: return @__table;
Line 6017: }
Line 6018:
Line 6019: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6020: private void @__BuildControl__control173(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 6021:
Line 6022: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6023: @__ctrl.CssClass = "headerWithBorder";
Line 6024:
Line 6025: #line default
Line 6026: #line hidden
Line 6027: }
Line 6028:
Line 6029: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6030: private void @__BuildControl__control174(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 6031:
Line 6032: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6033: @__ctrl.CssClass = "trWithBorder";
Line 6034:
Line 6035: #line default
Line 6036: #line hidden
Line 6037: }
Line 6038:
Line 6039: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6040: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control166() {
Line 6041: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 6042:
Line 6043: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6044: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 6045:
Line 6046: #line default
Line 6047: #line hidden
Line 6048:
Line 6049: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6050: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control167), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control167));
Line 6051:
Line 6052: #line default
Line 6053: #line hidden
Line 6054:
Line 6055: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6056: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control169));
Line 6057:
Line 6058: #line default
Line 6059: #line hidden
Line 6060:
Line 6061: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6062: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control171), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control171));
Line 6063:
Line 6064: #line default
Line 6065: #line hidden
Line 6066:
Line 6067: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6068: @__ctrl.HeaderText = "Item";
Line 6069:
Line 6070: #line default
Line 6071: #line hidden
Line 6072:
Line 6073: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6074: this.@__BuildControl__control173(@__ctrl.HeaderStyle);
Line 6075:
Line 6076: #line default
Line 6077: #line hidden
Line 6078:
Line 6079: #line 283 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6080: this.@__BuildControl__control174(@__ctrl.ItemStyle);
Line 6081:
Line 6082: #line default
Line 6083: #line hidden
Line 6084: return @__ctrl;
Line 6085: }
Line 6086:
Line 6087: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6088: private global::System.Web.UI.WebControls.Label @__BuildControl__control177() {
Line 6089: global::System.Web.UI.WebControls.Label @__ctrl;
Line 6090:
Line 6091: #line 298 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6092: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 6093:
Line 6094: #line default
Line 6095: #line hidden
Line 6096: @__ctrl.TemplateControl = this;
Line 6097: @__ctrl.ApplyStyleSheetSkin(this);
Line 6098:
Line 6099: #line 298 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6100: @__ctrl.ID = "ProcedureOwnerLabel";
Line 6101:
Line 6102: #line default
Line 6103: #line hidden
Line 6104:
Line 6105: #line 298 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6106: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control177);
Line 6107:
Line 6108: #line default
Line 6109: #line hidden
Line 6110: return @__ctrl;
Line 6111: }
Line 6112:
Line 6113: public void @__DataBinding__control177(object sender, System.EventArgs e) {
Line 6114: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 6115: System.Web.UI.IDataItemContainer Container;
Line 6116: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 6117: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 6118: if ((this.Page.GetDataItem() != null)) {
Line 6119:
Line 6120: #line 298 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6121: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("ProcedureOwner"), System.Globalization.CultureInfo.CurrentCulture);
Line 6122:
Line 6123: #line default
Line 6124: #line hidden
Line 6125: }
Line 6126: }
Line 6127:
Line 6128: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6129: private void @__BuildControl__control176(System.Web.UI.Control @__ctrl) {
Line 6130: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 6131:
Line 6132: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6133: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6134:
Line 6135: #line default
Line 6136: #line hidden
Line 6137: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 6138:
Line 6139: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6140: @__ctrl1 = this.@__BuildControl__control177();
Line 6141:
Line 6142: #line default
Line 6143: #line hidden
Line 6144:
Line 6145: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6146: @__parser.AddParsedSubObject(@__ctrl1);
Line 6147:
Line 6148: #line default
Line 6149: #line hidden
Line 6150:
Line 6151: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6152: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6153:
Line 6154: #line default
Line 6155: #line hidden
Line 6156: }
Line 6157:
Line 6158: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6159: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control176(System.Web.UI.Control @__container) {
Line 6160: System.Collections.Specialized.OrderedDictionary @__table;
Line 6161: System.Web.UI.WebControls.Label ProcedureOwnerLabel;
Line 6162:
Line 6163: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6164: ProcedureOwnerLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("ProcedureOwnerLabel")));
Line 6165:
Line 6166: #line default
Line 6167: #line hidden
Line 6168:
Line 6169: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6170: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 6171:
Line 6172: #line default
Line 6173: #line hidden
Line 6174:
Line 6175: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6176: if ((ProcedureOwnerLabel != null)) {
Line 6177: @__table["ProcedureOwner"] = ProcedureOwnerLabel.Text;
Line 6178: }
Line 6179:
Line 6180: #line default
Line 6181: #line hidden
Line 6182: return @__table;
Line 6183: }
Line 6184:
Line 6185: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6186: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control179() {
Line 6187: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 6188:
Line 6189: #line 301 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6190: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 6191:
Line 6192: #line default
Line 6193: #line hidden
Line 6194: @__ctrl.TemplateControl = this;
Line 6195: @__ctrl.ApplyStyleSheetSkin(this);
Line 6196:
Line 6197: #line 301 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6198: @__ctrl.ID = "txtProcedureOwner";
Line 6199:
Line 6200: #line default
Line 6201: #line hidden
Line 6202:
Line 6203: #line 301 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6204: @__ctrl.CssClass = "aspTextBox01";
Line 6205:
Line 6206: #line default
Line 6207: #line hidden
Line 6208:
Line 6209: #line 301 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6210: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control179);
Line 6211:
Line 6212: #line default
Line 6213: #line hidden
Line 6214: return @__ctrl;
Line 6215: }
Line 6216:
Line 6217: public void @__DataBinding__control179(object sender, System.EventArgs e) {
Line 6218: System.Web.UI.WebControls.TextBox dataBindingExpressionBuilderTarget;
Line 6219: System.Web.UI.IDataItemContainer Container;
Line 6220: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.TextBox)(sender));
Line 6221: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 6222: if ((this.Page.GetDataItem() != null)) {
Line 6223:
Line 6224: #line 301 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6225: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("ProcedureOwner"), System.Globalization.CultureInfo.CurrentCulture);
Line 6226:
Line 6227: #line default
Line 6228: #line hidden
Line 6229: }
Line 6230: }
Line 6231:
Line 6232: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6233: private void @__BuildControl__control178(System.Web.UI.Control @__ctrl) {
Line 6234: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 6235:
Line 6236: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6237: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6238:
Line 6239: #line default
Line 6240: #line hidden
Line 6241: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 6242:
Line 6243: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6244: @__ctrl1 = this.@__BuildControl__control179();
Line 6245:
Line 6246: #line default
Line 6247: #line hidden
Line 6248:
Line 6249: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6250: @__parser.AddParsedSubObject(@__ctrl1);
Line 6251:
Line 6252: #line default
Line 6253: #line hidden
Line 6254:
Line 6255: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6256: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6257:
Line 6258: #line default
Line 6259: #line hidden
Line 6260: }
Line 6261:
Line 6262: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6263: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control178(System.Web.UI.Control @__container) {
Line 6264: System.Collections.Specialized.OrderedDictionary @__table;
Line 6265: System.Web.UI.WebControls.TextBox txtProcedureOwner;
Line 6266:
Line 6267: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6268: txtProcedureOwner = ((System.Web.UI.WebControls.TextBox)(@__container.FindControl("txtProcedureOwner")));
Line 6269:
Line 6270: #line default
Line 6271: #line hidden
Line 6272:
Line 6273: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6274: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 6275:
Line 6276: #line default
Line 6277: #line hidden
Line 6278:
Line 6279: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6280: if ((txtProcedureOwner != null)) {
Line 6281: @__table["ProcedureOwner"] = txtProcedureOwner.Text;
Line 6282: }
Line 6283:
Line 6284: #line default
Line 6285: #line hidden
Line 6286: return @__table;
Line 6287: }
Line 6288:
Line 6289: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6290: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control181() {
Line 6291: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 6292:
Line 6293: #line 304 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6294: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 6295:
Line 6296: #line default
Line 6297: #line hidden
Line 6298: @__ctrl.TemplateControl = this;
Line 6299: @__ctrl.ApplyStyleSheetSkin(this);
Line 6300:
Line 6301: #line 304 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6302: @__ctrl.ID = "txtProcedureOwner";
Line 6303:
Line 6304: #line default
Line 6305: #line hidden
Line 6306:
Line 6307: #line 304 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6308: @__ctrl.CssClass = "aspTextBox01";
Line 6309:
Line 6310: #line default
Line 6311: #line hidden
Line 6312: return @__ctrl;
Line 6313: }
Line 6314:
Line 6315: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6316: private void @__BuildControl__control180(System.Web.UI.Control @__ctrl) {
Line 6317: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 6318:
Line 6319: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6320: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6321:
Line 6322: #line default
Line 6323: #line hidden
Line 6324: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 6325:
Line 6326: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6327: @__ctrl1 = this.@__BuildControl__control181();
Line 6328:
Line 6329: #line default
Line 6330: #line hidden
Line 6331:
Line 6332: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6333: @__parser.AddParsedSubObject(@__ctrl1);
Line 6334:
Line 6335: #line default
Line 6336: #line hidden
Line 6337:
Line 6338: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6339: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6340:
Line 6341: #line default
Line 6342: #line hidden
Line 6343: }
Line 6344:
Line 6345: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6346: private void @__BuildControl__control182(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 6347:
Line 6348: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6349: @__ctrl.CssClass = "headerWithBorder";
Line 6350:
Line 6351: #line default
Line 6352: #line hidden
Line 6353: }
Line 6354:
Line 6355: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6356: private void @__BuildControl__control183(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 6357:
Line 6358: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6359: @__ctrl.CssClass = "trWithBorder";
Line 6360:
Line 6361: #line default
Line 6362: #line hidden
Line 6363: }
Line 6364:
Line 6365: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6366: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control175() {
Line 6367: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 6368:
Line 6369: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6370: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 6371:
Line 6372: #line default
Line 6373: #line hidden
Line 6374:
Line 6375: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6376: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control176), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control176));
Line 6377:
Line 6378: #line default
Line 6379: #line hidden
Line 6380:
Line 6381: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6382: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control178), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control178));
Line 6383:
Line 6384: #line default
Line 6385: #line hidden
Line 6386:
Line 6387: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6388: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control180));
Line 6389:
Line 6390: #line default
Line 6391: #line hidden
Line 6392:
Line 6393: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6394: @__ctrl.HeaderText = "Procedure Owner";
Line 6395:
Line 6396: #line default
Line 6397: #line hidden
Line 6398:
Line 6399: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6400: this.@__BuildControl__control182(@__ctrl.HeaderStyle);
Line 6401:
Line 6402: #line default
Line 6403: #line hidden
Line 6404:
Line 6405: #line 296 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6406: this.@__BuildControl__control183(@__ctrl.ItemStyle);
Line 6407:
Line 6408: #line default
Line 6409: #line hidden
Line 6410: return @__ctrl;
Line 6411: }
Line 6412:
Line 6413: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6414: private global::System.Web.UI.WebControls.DropDownList @__BuildControl__control186() {
Line 6415: global::System.Web.UI.WebControls.DropDownList @__ctrl;
Line 6416:
Line 6417: #line 311 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6418: @__ctrl = new global::System.Web.UI.WebControls.DropDownList();
Line 6419:
Line 6420: #line default
Line 6421: #line hidden
Line 6422: @__ctrl.TemplateControl = this;
Line 6423: @__ctrl.ApplyStyleSheetSkin(this);
Line 6424:
Line 6425: #line 311 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6426: @__ctrl.ID = "cmbNewStatus";
Line 6427:
Line 6428: #line default
Line 6429: #line hidden
Line 6430:
Line 6431: #line 311 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6432: @__ctrl.CssClass = "aspDropDownList01";
Line 6433:
Line 6434: #line default
Line 6435: #line hidden
Line 6436: return @__ctrl;
Line 6437: }
Line 6438:
Line 6439: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6440: private void @__BuildControl__control185(System.Web.UI.Control @__ctrl) {
Line 6441: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 6442:
Line 6443: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6444: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6445:
Line 6446: #line default
Line 6447: #line hidden
Line 6448: global::System.Web.UI.WebControls.DropDownList @__ctrl1;
Line 6449:
Line 6450: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6451: @__ctrl1 = this.@__BuildControl__control186();
Line 6452:
Line 6453: #line default
Line 6454: #line hidden
Line 6455:
Line 6456: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6457: @__parser.AddParsedSubObject(@__ctrl1);
Line 6458:
Line 6459: #line default
Line 6460: #line hidden
Line 6461:
Line 6462: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6463: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6464:
Line 6465: #line default
Line 6466: #line hidden
Line 6467: }
Line 6468:
Line 6469: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6470: private global::System.Web.UI.WebControls.DropDownList @__BuildControl__control188() {
Line 6471: global::System.Web.UI.WebControls.DropDownList @__ctrl;
Line 6472:
Line 6473: #line 315 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6474: @__ctrl = new global::System.Web.UI.WebControls.DropDownList();
Line 6475:
Line 6476: #line default
Line 6477: #line hidden
Line 6478: @__ctrl.TemplateControl = this;
Line 6479: @__ctrl.ApplyStyleSheetSkin(this);
Line 6480:
Line 6481: #line 315 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6482: @__ctrl.ID = "cmbStatus";
Line 6483:
Line 6484: #line default
Line 6485: #line hidden
Line 6486:
Line 6487: #line 315 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6488: @__ctrl.CssClass = "aspDropDownList01";
Line 6489:
Line 6490: #line default
Line 6491: #line hidden
Line 6492: return @__ctrl;
Line 6493: }
Line 6494:
Line 6495: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6496: private void @__BuildControl__control187(System.Web.UI.Control @__ctrl) {
Line 6497: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 6498:
Line 6499: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6500: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6501:
Line 6502: #line default
Line 6503: #line hidden
Line 6504: global::System.Web.UI.WebControls.DropDownList @__ctrl1;
Line 6505:
Line 6506: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6507: @__ctrl1 = this.@__BuildControl__control188();
Line 6508:
Line 6509: #line default
Line 6510: #line hidden
Line 6511:
Line 6512: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6513: @__parser.AddParsedSubObject(@__ctrl1);
Line 6514:
Line 6515: #line default
Line 6516: #line hidden
Line 6517:
Line 6518: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6519: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6520:
Line 6521: #line default
Line 6522: #line hidden
Line 6523: }
Line 6524:
Line 6525: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6526: private global::System.Web.UI.WebControls.Label @__BuildControl__control190() {
Line 6527: global::System.Web.UI.WebControls.Label @__ctrl;
Line 6528:
Line 6529: #line 319 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6530: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 6531:
Line 6532: #line default
Line 6533: #line hidden
Line 6534: @__ctrl.TemplateControl = this;
Line 6535: @__ctrl.ApplyStyleSheetSkin(this);
Line 6536:
Line 6537: #line 319 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6538: @__ctrl.ID = "StatusLabel";
Line 6539:
Line 6540: #line default
Line 6541: #line hidden
Line 6542:
Line 6543: #line 319 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6544: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control190);
Line 6545:
Line 6546: #line default
Line 6547: #line hidden
Line 6548: return @__ctrl;
Line 6549: }
Line 6550:
Line 6551: public void @__DataBinding__control190(object sender, System.EventArgs e) {
Line 6552: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 6553: System.Web.UI.IDataItemContainer Container;
Line 6554: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 6555: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 6556: if ((this.Page.GetDataItem() != null)) {
Line 6557:
Line 6558: #line 319 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6559: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(this.Eval("Status"), System.Globalization.CultureInfo.CurrentCulture);
Line 6560:
Line 6561: #line default
Line 6562: #line hidden
Line 6563: }
Line 6564: }
Line 6565:
Line 6566: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6567: private void @__BuildControl__control189(System.Web.UI.Control @__ctrl) {
Line 6568: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 6569:
Line 6570: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6571: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6572:
Line 6573: #line default
Line 6574: #line hidden
Line 6575: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 6576:
Line 6577: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6578: @__ctrl1 = this.@__BuildControl__control190();
Line 6579:
Line 6580: #line default
Line 6581: #line hidden
Line 6582:
Line 6583: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6584: @__parser.AddParsedSubObject(@__ctrl1);
Line 6585:
Line 6586: #line default
Line 6587: #line hidden
Line 6588:
Line 6589: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6590: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6591:
Line 6592: #line default
Line 6593: #line hidden
Line 6594: }
Line 6595:
Line 6596: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6597: public System.Collections.Specialized.IOrderedDictionary @__ExtractValues__control189(System.Web.UI.Control @__container) {
Line 6598: System.Collections.Specialized.OrderedDictionary @__table;
Line 6599: System.Web.UI.WebControls.Label StatusLabel;
Line 6600:
Line 6601: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6602: StatusLabel = ((System.Web.UI.WebControls.Label)(@__container.FindControl("StatusLabel")));
Line 6603:
Line 6604: #line default
Line 6605: #line hidden
Line 6606:
Line 6607: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6608: @__table = new System.Collections.Specialized.OrderedDictionary();
Line 6609:
Line 6610: #line default
Line 6611: #line hidden
Line 6612:
Line 6613: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6614: if ((StatusLabel != null)) {
Line 6615: @__table["Status"] = StatusLabel.Text;
Line 6616: }
Line 6617:
Line 6618: #line default
Line 6619: #line hidden
Line 6620: return @__table;
Line 6621: }
Line 6622:
Line 6623: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6624: private void @__BuildControl__control191(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 6625:
Line 6626: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6627: @__ctrl.CssClass = "headerWithBorder";
Line 6628:
Line 6629: #line default
Line 6630: #line hidden
Line 6631: }
Line 6632:
Line 6633: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6634: private void @__BuildControl__control192(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 6635:
Line 6636: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6637: @__ctrl.CssClass = "trWithBorder";
Line 6638:
Line 6639: #line default
Line 6640: #line hidden
Line 6641: }
Line 6642:
Line 6643: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6644: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control184() {
Line 6645: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 6646:
Line 6647: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6648: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 6649:
Line 6650: #line default
Line 6651: #line hidden
Line 6652:
Line 6653: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6654: @__ctrl.EditItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control185), null);
Line 6655:
Line 6656: #line default
Line 6657: #line hidden
Line 6658:
Line 6659: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6660: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control187));
Line 6661:
Line 6662: #line default
Line 6663: #line hidden
Line 6664:
Line 6665: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6666: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control189), new System.Web.UI.ExtractTemplateValuesMethod(this.@__ExtractValues__control189));
Line 6667:
Line 6668: #line default
Line 6669: #line hidden
Line 6670:
Line 6671: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6672: @__ctrl.HeaderText = "Status";
Line 6673:
Line 6674: #line default
Line 6675: #line hidden
Line 6676:
Line 6677: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6678: this.@__BuildControl__control191(@__ctrl.HeaderStyle);
Line 6679:
Line 6680: #line default
Line 6681: #line hidden
Line 6682:
Line 6683: #line 309 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6684: this.@__BuildControl__control192(@__ctrl.ItemStyle);
Line 6685:
Line 6686: #line default
Line 6687: #line hidden
Line 6688: return @__ctrl;
Line 6689: }
Line 6690:
Line 6691: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6692: private global::System.Web.UI.WebControls.TextBox @__BuildControl__control195() {
Line 6693: global::System.Web.UI.WebControls.TextBox @__ctrl;
Line 6694:
Line 6695: #line 326 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6696: @__ctrl = new global::System.Web.UI.WebControls.TextBox();
Line 6697:
Line 6698: #line default
Line 6699: #line hidden
Line 6700: @__ctrl.TemplateControl = this;
Line 6701: @__ctrl.ApplyStyleSheetSkin(this);
Line 6702:
Line 6703: #line 326 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6704: @__ctrl.ID = "txtContractID";
Line 6705:
Line 6706: #line default
Line 6707: #line hidden
Line 6708:
Line 6709: #line 326 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6710: @__ctrl.CssClass = "aspTextBox01";
Line 6711:
Line 6712: #line default
Line 6713: #line hidden
Line 6714: return @__ctrl;
Line 6715: }
Line 6716:
Line 6717: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6718: private void @__BuildControl__control194(System.Web.UI.Control @__ctrl) {
Line 6719: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 6720:
Line 6721: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6722: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6723:
Line 6724: #line default
Line 6725: #line hidden
Line 6726: global::System.Web.UI.WebControls.TextBox @__ctrl1;
Line 6727:
Line 6728: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6729: @__ctrl1 = this.@__BuildControl__control195();
Line 6730:
Line 6731: #line default
Line 6732: #line hidden
Line 6733:
Line 6734: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6735: @__parser.AddParsedSubObject(@__ctrl1);
Line 6736:
Line 6737: #line default
Line 6738: #line hidden
Line 6739:
Line 6740: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6741: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6742:
Line 6743: #line default
Line 6744: #line hidden
Line 6745: }
Line 6746:
Line 6747: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6748: private global::System.Web.UI.WebControls.Label @__BuildControl__control197() {
Line 6749: global::System.Web.UI.WebControls.Label @__ctrl;
Line 6750:
Line 6751: #line 329 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6752: @__ctrl = new global::System.Web.UI.WebControls.Label();
Line 6753:
Line 6754: #line default
Line 6755: #line hidden
Line 6756: @__ctrl.TemplateControl = this;
Line 6757: @__ctrl.ApplyStyleSheetSkin(this);
Line 6758:
Line 6759: #line 329 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6760: @__ctrl.ID = "ContractIDLabel";
Line 6761:
Line 6762: #line default
Line 6763: #line hidden
Line 6764:
Line 6765: #line 329 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6766: @__ctrl.DataBinding += new System.EventHandler(this.@__DataBinding__control197);
Line 6767:
Line 6768: #line default
Line 6769: #line hidden
Line 6770: return @__ctrl;
Line 6771: }
Line 6772:
Line 6773: public void @__DataBinding__control197(object sender, System.EventArgs e) {
Line 6774: System.Web.UI.WebControls.Label dataBindingExpressionBuilderTarget;
Line 6775: System.Web.UI.IDataItemContainer Container;
Line 6776: dataBindingExpressionBuilderTarget = ((System.Web.UI.WebControls.Label)(sender));
Line 6777: Container = ((System.Web.UI.IDataItemContainer)(dataBindingExpressionBuilderTarget.BindingContainer));
Line 6778:
Line 6779: #line 329 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6780: dataBindingExpressionBuilderTarget.Text = System.Convert.ToString( Eval("ContractID") , System.Globalization.CultureInfo.CurrentCulture);
Line 6781:
Line 6782: #line default
Line 6783: #line hidden
Line 6784: }
Line 6785:
Line 6786: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6787: private void @__BuildControl__control196(System.Web.UI.Control @__ctrl) {
Line 6788: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 6789:
Line 6790: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6791: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6792:
Line 6793: #line default
Line 6794: #line hidden
Line 6795: global::System.Web.UI.WebControls.Label @__ctrl1;
Line 6796:
Line 6797: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6798: @__ctrl1 = this.@__BuildControl__control197();
Line 6799:
Line 6800: #line default
Line 6801: #line hidden
Line 6802:
Line 6803: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6804: @__parser.AddParsedSubObject(@__ctrl1);
Line 6805:
Line 6806: #line default
Line 6807: #line hidden
Line 6808:
Line 6809: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6810: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 6811:
Line 6812: #line default
Line 6813: #line hidden
Line 6814: }
Line 6815:
Line 6816: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6817: private void @__BuildControl__control198(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 6818:
Line 6819: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6820: @__ctrl.CssClass = "headerWithBorder";
Line 6821:
Line 6822: #line default
Line 6823: #line hidden
Line 6824: }
Line 6825:
Line 6826: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6827: private void @__BuildControl__control199(System.Web.UI.WebControls.TableItemStyle @__ctrl) {
Line 6828:
Line 6829: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6830: @__ctrl.CssClass = "trWithBorder";
Line 6831:
Line 6832: #line default
Line 6833: #line hidden
Line 6834: }
Line 6835:
Line 6836: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6837: private global::System.Web.UI.WebControls.TemplateField @__BuildControl__control193() {
Line 6838: global::System.Web.UI.WebControls.TemplateField @__ctrl;
Line 6839:
Line 6840: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6841: @__ctrl = new global::System.Web.UI.WebControls.TemplateField();
Line 6842:
Line 6843: #line default
Line 6844: #line hidden
Line 6845:
Line 6846: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6847: @__ctrl.FooterTemplate = new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control194));
Line 6848:
Line 6849: #line default
Line 6850: #line hidden
Line 6851:
Line 6852: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6853: @__ctrl.ItemTemplate = new System.Web.UI.CompiledBindableTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControl__control196), null);
Line 6854:
Line 6855: #line default
Line 6856: #line hidden
Line 6857:
Line 6858: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6859: @__ctrl.HeaderText = "Contract ID";
Line 6860:
Line 6861: #line default
Line 6862: #line hidden
Line 6863:
Line 6864: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6865: this.@__BuildControl__control198(@__ctrl.HeaderStyle);
Line 6866:
Line 6867: #line default
Line 6868: #line hidden
Line 6869:
Line 6870: #line 324 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6871: this.@__BuildControl__control199(@__ctrl.ItemStyle);
Line 6872:
Line 6873: #line default
Line 6874: #line hidden
Line 6875: return @__ctrl;
Line 6876: }
Line 6877:
Line 6878: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6879: private void @__BuildControl__control143(System.Web.UI.WebControls.DataControlFieldCollection @__ctrl) {
Line 6880: global::System.Web.UI.WebControls.TemplateField @__ctrl1;
Line 6881:
Line 6882: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6883: @__ctrl1 = this.@__BuildControl__control144();
Line 6884:
Line 6885: #line default
Line 6886: #line hidden
Line 6887:
Line 6888: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6889: @__ctrl.Add(@__ctrl1);
Line 6890:
Line 6891: #line default
Line 6892: #line hidden
Line 6893: global::System.Web.UI.WebControls.TemplateField @__ctrl2;
Line 6894:
Line 6895: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6896: @__ctrl2 = this.@__BuildControl__control151();
Line 6897:
Line 6898: #line default
Line 6899: #line hidden
Line 6900:
Line 6901: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6902: @__ctrl.Add(@__ctrl2);
Line 6903:
Line 6904: #line default
Line 6905: #line hidden
Line 6906: global::System.Web.UI.WebControls.TemplateField @__ctrl3;
Line 6907:
Line 6908: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6909: @__ctrl3 = this.@__BuildControl__control161();
Line 6910:
Line 6911: #line default
Line 6912: #line hidden
Line 6913:
Line 6914: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6915: @__ctrl.Add(@__ctrl3);
Line 6916:
Line 6917: #line default
Line 6918: #line hidden
Line 6919: global::System.Web.UI.WebControls.TemplateField @__ctrl4;
Line 6920:
Line 6921: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6922: @__ctrl4 = this.@__BuildControl__control166();
Line 6923:
Line 6924: #line default
Line 6925: #line hidden
Line 6926:
Line 6927: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6928: @__ctrl.Add(@__ctrl4);
Line 6929:
Line 6930: #line default
Line 6931: #line hidden
Line 6932: global::System.Web.UI.WebControls.TemplateField @__ctrl5;
Line 6933:
Line 6934: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6935: @__ctrl5 = this.@__BuildControl__control175();
Line 6936:
Line 6937: #line default
Line 6938: #line hidden
Line 6939:
Line 6940: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6941: @__ctrl.Add(@__ctrl5);
Line 6942:
Line 6943: #line default
Line 6944: #line hidden
Line 6945: global::System.Web.UI.WebControls.TemplateField @__ctrl6;
Line 6946:
Line 6947: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6948: @__ctrl6 = this.@__BuildControl__control184();
Line 6949:
Line 6950: #line default
Line 6951: #line hidden
Line 6952:
Line 6953: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6954: @__ctrl.Add(@__ctrl6);
Line 6955:
Line 6956: #line default
Line 6957: #line hidden
Line 6958: global::System.Web.UI.WebControls.TemplateField @__ctrl7;
Line 6959:
Line 6960: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6961: @__ctrl7 = this.@__BuildControl__control193();
Line 6962:
Line 6963: #line default
Line 6964: #line hidden
Line 6965:
Line 6966: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6967: @__ctrl.Add(@__ctrl7);
Line 6968:
Line 6969: #line default
Line 6970: #line hidden
Line 6971: }
Line 6972:
Line 6973: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 6974: private global::System.Web.UI.WebControls.GridView @__BuildControlgvChecklist() {
Line 6975: global::System.Web.UI.WebControls.GridView @__ctrl;
Line 6976:
Line 6977: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6978: @__ctrl = new global::System.Web.UI.WebControls.GridView();
Line 6979:
Line 6980: #line default
Line 6981: #line hidden
Line 6982: this.gvChecklist = @__ctrl;
Line 6983: @__ctrl.TemplateControl = this;
Line 6984: @__ctrl.ApplyStyleSheetSkin(this);
Line 6985:
Line 6986: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6987: @__ctrl.ID = "gvChecklist";
Line 6988:
Line 6989: #line default
Line 6990: #line hidden
Line 6991:
Line 6992: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6993: @__ctrl.AutoGenerateColumns = false;
Line 6994:
Line 6995: #line default
Line 6996: #line hidden
Line 6997:
Line 6998: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 6999: @__ctrl.ShowFooter = true;
Line 7000:
Line 7001: #line default
Line 7002: #line hidden
Line 7003:
Line 7004: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7005: @__ctrl.AllowPaging = true;
Line 7006:
Line 7007: #line default
Line 7008: #line hidden
Line 7009:
Line 7010: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7011: @__ctrl.CssClass = "tableWithBorder";
Line 7012:
Line 7013: #line default
Line 7014: #line hidden
Line 7015:
Line 7016: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7017: @__ctrl.Height = new System.Web.UI.WebControls.Unit(195, System.Web.UI.WebControls.UnitType.Pixel);
Line 7018:
Line 7019: #line default
Line 7020: #line hidden
Line 7021:
Line 7022: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7023: @__ctrl.PageSize = 5;
Line 7024:
Line 7025: #line default
Line 7026: #line hidden
Line 7027:
Line 7028: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7029: @__ctrl.DataKeyNames = new string[] {
Line 7030: "itemID"};
Line 7031:
Line 7032: #line default
Line 7033: #line hidden
Line 7034:
Line 7035: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7036: this.@__BuildControl__control143(@__ctrl.Columns);
Line 7037:
Line 7038: #line default
Line 7039: #line hidden
Line 7040:
Line 7041: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7042: @__ctrl.RowCreated += new System.Web.UI.WebControls.GridViewRowEventHandler(this.gvChecklist_RowCreated);
Line 7043:
Line 7044: #line default
Line 7045: #line hidden
Line 7046:
Line 7047: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7048: @__ctrl.RowCommand += new System.Web.UI.WebControls.GridViewCommandEventHandler(this.gvChecklist_RowCommand);
Line 7049:
Line 7050: #line default
Line 7051: #line hidden
Line 7052:
Line 7053: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7054: @__ctrl.RowDataBound += new System.Web.UI.WebControls.GridViewRowEventHandler(this.gvChecklist_RowDataBound);
Line 7055:
Line 7056: #line default
Line 7057: #line hidden
Line 7058:
Line 7059: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7060: @__ctrl.RowCancelingEdit += new System.Web.UI.WebControls.GridViewCancelEditEventHandler(this.gvChecklist_RowCancelingEdit);
Line 7061:
Line 7062: #line default
Line 7063: #line hidden
Line 7064:
Line 7065: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7066: @__ctrl.RowDeleting += new System.Web.UI.WebControls.GridViewDeleteEventHandler(this.gvChecklist_RowDeleting);
Line 7067:
Line 7068: #line default
Line 7069: #line hidden
Line 7070:
Line 7071: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7072: @__ctrl.RowEditing += new System.Web.UI.WebControls.GridViewEditEventHandler(this.gvChecklist_RowEditing);
Line 7073:
Line 7074: #line default
Line 7075: #line hidden
Line 7076:
Line 7077: #line 238 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7078: @__ctrl.RowUpdating += new System.Web.UI.WebControls.GridViewUpdateEventHandler(this.gvChecklist_RowUpdating);
Line 7079:
Line 7080: #line default
Line 7081: #line hidden
Line 7082: return @__ctrl;
Line 7083: }
Line 7084:
Line 7085: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 7086: private void @__BuildControlContent2(System.Web.UI.Control @__ctrl) {
Line 7087: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl));
Line 7088:
Line 7089: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7090: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n "));
Line 7091:
Line 7092: #line default
Line 7093: #line hidden
Line 7094: global::System.Web.UI.WebControls.GridView @__ctrl1;
Line 7095:
Line 7096: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7097: @__ctrl1 = this.@__BuildControlgvCriticalTerms();
Line 7098:
Line 7099: #line default
Line 7100: #line hidden
Line 7101:
Line 7102: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7103: @__parser.AddParsedSubObject(@__ctrl1);
Line 7104:
Line 7105: #line default
Line 7106: #line hidden
Line 7107:
Line 7108: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx"
Line 7109: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n \r\n \r\n ")); Line 7110: Line 7111: #line default Line 7112: #line hidden Line 7113: global::System.Web.UI.WebControls.GridView @__ctrl2; Line 7114: Line 7115: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7116: @__ctrl2 = this.@__BuildControlgvUploadedDocuments(); Line 7117: Line 7118: #line default Line 7119: #line hidden Line 7120: Line 7121: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7122: @__parser.AddParsedSubObject(@__ctrl2); Line 7123: Line 7124: #line default Line 7125: #line hidden Line 7126: Line 7127: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7128: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n
\r\n ")); Line 7129: Line 7130: #line default Line 7131: #line hidden Line 7132: global::System.Web.UI.WebControls.GridView @__ctrl3; Line 7133: Line 7134: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7135: @__ctrl3 = this.@__BuildControlgvChecklist(); Line 7136: Line 7137: #line default Line 7138: #line hidden Line 7139: Line 7140: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7141: @__parser.AddParsedSubObject(@__ctrl3); Line 7142: Line 7143: #line default Line 7144: #line hidden Line 7145: Line 7146: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7147: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n ")); Line 7148: Line 7149: #line default Line 7150: #line hidden Line 7151: } Line 7152: Line 7153: [System.Diagnostics.DebuggerNonUserCodeAttribute()] Line 7154: private void @__BuildControlTree(app_vrm_contractthreegridview_aspx @__ctrl) { Line 7155: Line 7156: #line 1 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7157: @__ctrl.Title = ""; Line 7158: Line 7159: #line default Line 7160: #line hidden Line 7161: Line 7162: #line 1 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7163: @__ctrl.MasterPageFile = "~/common/VRMMasterPage.master"; Line 7164: Line 7165: #line default Line 7166: #line hidden Line 7167: Line 7168: #line 1 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7169: @__ctrl.MaintainScrollPositionOnPostBack = true; Line 7170: Line 7171: #line default Line 7172: #line hidden Line 7173: Line 7174: #line 1 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7175: this.InitializeCulture(); Line 7176: Line 7177: #line default Line 7178: #line hidden Line 7179: Line 7180: #line 4 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7181: this.AddContentTemplate("ContentPlaceHolder2", new System.Web.UI.CompiledTemplateBuilder(new System.Web.UI.BuildTemplateMethod(this.@__BuildControlContent2))); Line 7182: Line 7183: #line default Line 7184: #line hidden Line 7185: System.Web.UI.IParserAccessor @__parser = ((System.Web.UI.IParserAccessor)(@__ctrl)); Line 7186: Line 7187: #line 1 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx" Line 7188: @__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n")); Line 7189: Line 7190: #line default Line 7191: #line hidden Line 7192: } Line 7193: Line 7194: Line 7195: #line 912304 "C:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx.cs" Line 7196: [System.Diagnostics.DebuggerNonUserCodeAttribute()] Line 7197: protected override void FrameworkInitialize() { Line 7198: base.FrameworkInitialize(); Line 7199: this.@__BuildControlTree(this); Line 7200: this.AddWrappedFileDependencies(global::ASP.app_vrm_contractthreegridview_aspx.@__fileDependencies); Line 7201: this.Request.ValidateInput(); Line 7202: } Line 7203: Line 7204: #line default Line 7205: #line hidden Line 7206: Line 7207: [System.Diagnostics.DebuggerNonUserCodeAttribute()] Line 7208: public override int GetTypeHashCode() { Line 7209: return 642931324; Line 7210: } Line 7211: Line 7212: [System.Diagnostics.DebuggerNonUserCodeAttribute()] Line 7213: public override void ProcessRequest(System.Web.HttpContext context) { Line 7214: base.ProcessRequest(context); Line 7215: } Line 7216: } Line 7217: } Line 7218:
Version Information: Microsoft .NET Framework Version:2.0.50727.4952; ASP.NET Version:2.0.50727.4955
Thanks!
Madhu KPosted Feb 14, 2011, 3:50 AM