The installation went fine, and is running ok on my localhost, I 'm clicking my way through the app and everything is working fine, until I try and run a report and I get:
System.FormatException: Input string was not in a correct format
Line 260:
Line 261: For Each str As String In substrings
Line 262: Dim id As Integer = CInt(str)
Line 263: list.Add(Project.GetProjectById(id))
Line 264: Next str Source File: C:\Inetpub\wwwroot\TimeTracker1\App_Code\BLL\Project.vb Line:
262
Have the same declaration at Line 307, but I don't know enough to understand how to reformat the string as it's passed in... Any suggestions?
Line 324: ByRef oList As List(Of IPClass))
Line 325: Do While returnData.Read()
Line 326: Dim oItem As IPClass = New IPClass( _
Line 327: CStr(returnData("Device")), _
Line 328: CStr(returnData("Location")), _
Hi, I have a similar problem...I am getting System.FormatException: Input string was not in a correct format while converting string to int but the string is neither empty nor non numeric.... can someone plz help me...what can be the other reason for this
exception...
d1mann
Member
70 Points
14 Posts
System.FormatException: Input string was not in a correct format.????
Jan 24, 2006 01:10 AM|LINK
The installation went fine, and is running ok on my localhost, I 'm clicking my way through the app and everything is working fine, until I try and run a report and I get:
System.FormatException: Input string was not in a correct format
Line 260:
Line 261: For Each str As String In substrings
Line 262: Dim id As Integer = CInt(str)
Line 263: list.Add(Project.GetProjectById(id))
Line 264: Next str
Source File: C:\Inetpub\wwwroot\TimeTracker1\App_Code\BLL\Project.vb Line: 262
Have the same declaration at Line 307, but I don't know enough to understand how to reformat the string as it's passed in... Any suggestions?
Dennis
Jeevi
Member
225 Points
54 Posts
Re: System.FormatException: Input string was not in a correct format.????
Jan 24, 2006 04:02 AM|LINK
hi,
this problem occurs when u try to convert non numeric or empty string into integer.add the following condition inside ur loop.
For Each str As String In substrings
IF isNumeric(str) THEN
Dim id As Integer = CInt(str) ENDIF
: list.Add(Project.GetProjectById(id))
Next str
d1mann
Member
70 Points
14 Posts
Re: System.FormatException: Input string was not in a correct format.????
Jan 25, 2006 01:39 AM|LINK
Thanks Jeevi, new to this, didn't think about passing a null value in... that validation statement fixed it!
sabena248
Member
14 Points
7 Posts
Re: System.FormatException: Input string was not in a correct format.????
Dec 14, 2007 09:09 PM|LINK
I keep getting the same error.
Line 324: ByRef oList As List(Of IPClass))
Line 325: Do While returnData.Read()
Line 326: Dim oItem As IPClass = New IPClass( _
Line 327: CStr(returnData("Device")), _
Line 328: CStr(returnData("Location")), _
chetan.sarod...
All-Star
65619 Points
11118 Posts
Re: System.FormatException: Input string was not in a correct format.????
Dec 15, 2007 02:38 AM|LINK
Try to debug application & check the value
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
chetan.sarod...
All-Star
65619 Points
11118 Posts
Re: System.FormatException: Input string was not in a correct format.????
Feb 05, 2008 02:26 AM|LINK
Have you solved your problem what you are facing
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
Vinoo
Member
2 Points
1 Post
Re: System.FormatException: Input string was not in a correct format.????
Apr 14, 2008 07:25 AM|LINK
Hi, I have a similar problem...I am getting System.FormatException: Input string was not in a correct format while converting string to int but the string is neither empty nor non numeric.... can someone plz help me...what can be the other reason for this exception...
chetan.sarod...
All-Star
65619 Points
11118 Posts
Re: System.FormatException: Input string was not in a correct format.????
Aug 14, 2008 03:25 AM|LINK
Can you tell me what is the value of string
http://support.microsoft.com/kb/942460
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
chetan.sarod...
All-Star
65619 Points
11118 Posts
Re: System.FormatException: Input string was not in a correct format.????
Sep 09, 2008 03:30 AM|LINK
If you solved the problem, Please mark the answer
So it will help for other people
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
aduhperf
Member
20 Points
54 Posts
Re: System.FormatException: Input string was not in a correct format.????
Sep 07, 2009 10:10 AM|LINK
please i having similar problem app breaks at this line in the code
int howManyProducts = Convert.ToInt32(comm.Parameters["@HowManyProducts"].Value.ToString());
the complete code is
public static DataTable GetProductsOnDeptPromo
(string departmentId, string pageNumber, out int howManyPages)
{
// get a configured DbCommand object
DbCommand comm = GenericDataAccess.CreateCommand();
// set the stored procedure name
comm.CommandText = "CatalogGetProductsOnDeptPromo";
// create a new parameter
DbParameter param = comm.CreateParameter();
param.ParameterName = "@DepartmentID";
param.Value = departmentId;
param.DbType = DbType.Int32;
comm.Parameters.Add(param);
// create a new parameter
param = comm.CreateParameter();
param.ParameterName = "@DescriptionLength";
param.Value = BalloonShopConfiguration.ProductDescriptionLength;
param.DbType = DbType.Int32;
comm.Parameters.Add(param);
// create a new parameter
param = comm.CreateParameter();
param.ParameterName = "@PageNumber";
param.Value = pageNumber;
param.DbType = DbType.Int32;
comm.Parameters.Add(param);
// create a new parameter
param = comm.CreateParameter();
param.ParameterName = "@ProductsPerPage";
param.Value = BalloonShopConfiguration.ProductsPerPage;
param.DbType = DbType.Int32;
comm.Parameters.Add(param);
// create a new parameter
param = comm.CreateParameter();
param.ParameterName = "@HowManyProducts";
param.Direction = ParameterDirection.Output;
param.DbType = DbType.Int32;
comm.Parameters.Add(param);
// execute the stored procedure and save the results in a DataTable
DataTable table = GenericDataAccess.ExecuteSelectCommand(comm);
// calculate how many pages of products and set the out parameter
int howManyProducts = Convert.ToInt32(comm.Parameters["@HowManyProducts"].Value.ToString());
howManyPages = (int)Math.Ceiling((double)howManyProducts /
(double)BalloonShopConfiguration.ProductsPerPage);
// return the page of products
return table;
<div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">(string departmentId, string pageNumber, out int howManyPages)</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">{</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// get a configured DbCommand object</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">DbCommand comm = GenericDataAccess.CreateCommand();</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// set the stored procedure name</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.CommandText = "CatalogGetProductsOnDeptPromo";</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">DbParameter param = comm.CreateParameter();</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@DepartmentID";</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Value = departmentId;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param = comm.CreateParameter();</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@DescriptionLength";</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Value = BalloonShopConfiguration.ProductDescriptionLength;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param = comm.CreateParameter();</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@PageNumber";</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Value = pageNumber;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param = comm.CreateParameter();</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@ProductsPerPage";</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Value = BalloonShopConfiguration.ProductsPerPage;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param = comm.CreateParameter();</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@HowManyProducts";</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Direction = ParameterDirection.Output;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// execute the stored procedure and save the results in a DataTable</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">DataTable table = GenericDataAccess.ExecuteSelectCommand(comm);</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// calculate how many pages of products and set the out parameter</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">int howManyProducts = Convert.ToInt32(comm.Parameters["@HowManyProducts"].Value.ToString());</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">howManyPages = (int)Math.Ceiling((double)howManyProducts /</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">(double)BalloonShopConfiguration.ProductsPerPage);</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// return the page of products</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">return table;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">}public static DataTable GetProductsOnDeptPromo</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">(string departmentId, string pageNumber, out int howManyPages)</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">{</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// get a configured DbCommand object</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">DbCommand comm = GenericDataAccess.CreateCommand();</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// set the stored procedure name</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.CommandText = "CatalogGetProductsOnDeptPromo";</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">DbParameter param = comm.CreateParameter();</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@DepartmentID";</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Value = departmentId;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param = comm.CreateParameter();</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@DescriptionLength";</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Value = BalloonShopConfiguration.ProductDescriptionLength;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param = comm.CreateParameter();</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@PageNumber";</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Value = pageNumber;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param = comm.CreateParameter();</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@ProductsPerPage";</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Value = BalloonShopConfiguration.ProductsPerPage;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// create a new parameter</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param = comm.CreateParameter();</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.ParameterName = "@HowManyProducts";</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.Direction = ParameterDirection.Output;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">param.DbType = DbType.Int32;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">comm.Parameters.Add(param);</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// execute the stored procedure and save the results in a DataTable</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">DataTable table = GenericDataAccess.ExecuteSelectCommand(comm);</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// calculate how many pages of products and set the out parameter</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">int howManyProducts = Convert.ToInt32(comm.Parameters["@HowManyProducts"].Value.ToString());</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">howManyPages = (int)Math.Ceiling((double)howManyProducts /</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">(double)BalloonShopConfiguration.ProductsPerPage);</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// return the page of products</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">return table;</div><div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">}</div>