Trying to append row wise data in a variable in sequential order












0















While reading data it is coming in below mentioned order what i want first read first row of data of grid then append it to table then read second row and then append.i mean first value read 1sizMin,2sizeMax,3tolMin,4tolMax of rownum=1 then 2nd,3rd but not getting idea how to do.



+----------+----------+--------+--+
| prop_name | property | rownum | |
+----------+----------+--------+--+
| 1NDia | 1 | 1 | |
| 1sizMin | 1 | 1 | |
| 3tolMin | 3 | 1 | |
| 4tolMax | 4 | 1 | |
| 2sizeMax | 2 | 1 | |
| 1NDia | 2 | 2 | |
| 1sizMin | 5 | 2 | |
| 3tolMin | 7 | 2 | |
| 4tolMax | 8 | 2 | |
| 2sizeMax | 6 | 2 | |
| 1NDia | 3 | 3 | |
| 1sizMin | 9 | 3 | |
| 3tolMin | 11 | 3 | |
| 4tolMax | 12 | 3 | |
| 2sizeMax | 10 | 3 | |
+----------+----------+--------+--+


c# code



var sizMinStringFrst = "";
var sizMinStringSnd = "";
var sizMinStringThrd = "";
var sizMinStringFr = "";
int StdSize = 0;
var lblStdSize_Tolerm =htmltable
while (ReadData.Read())
{
if (prop_name == "1sizMin")
{
sizMinStringFrst = tdc_property;
StdSize = StdSize+1;
}
if (prop_name == "2sizeMax")
{
sizMinStringSnd = tdc_property;
StdSize = StdSize + 1;
}
if (prop_name == "3tolMin")
{
sizMinStringThrd = tdc_property;
StdSize = StdSize + 1;
}
if (prop_name == "4tolMax")
{
sizMinStringFr = tdc_property;
StdSize = StdSize + 1;
}
if (StdSize % 4 == 0)
{
var newTable = "<tr><td class='td-First-col-value'><center>" + sizMinStringFrst + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringSnd + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringThrd + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringFr + "</center></td></tr>";
lblStdSize_Tolerm = lblStdSize_Tolerm + newTable;

}
}
lblStdSize_Toler.Text = lblStdSize_Tolerm+ "</table>";


I have defined four varible at top to store property value
and StdSize variable as a counter and divide it with 4 so that when first row column data found then it will append to table similarly second but logic is some wrong .after exit the loop this table will bind to a label any idea how to implement this will be appreciated.










share|improve this question























  • What result do you get with this code? Did you try to debug the code and check the variable values at each step to understand what is the logic issue?

    – Chetan Ranpariya
    Nov 21 '18 at 7:37


















0















While reading data it is coming in below mentioned order what i want first read first row of data of grid then append it to table then read second row and then append.i mean first value read 1sizMin,2sizeMax,3tolMin,4tolMax of rownum=1 then 2nd,3rd but not getting idea how to do.



+----------+----------+--------+--+
| prop_name | property | rownum | |
+----------+----------+--------+--+
| 1NDia | 1 | 1 | |
| 1sizMin | 1 | 1 | |
| 3tolMin | 3 | 1 | |
| 4tolMax | 4 | 1 | |
| 2sizeMax | 2 | 1 | |
| 1NDia | 2 | 2 | |
| 1sizMin | 5 | 2 | |
| 3tolMin | 7 | 2 | |
| 4tolMax | 8 | 2 | |
| 2sizeMax | 6 | 2 | |
| 1NDia | 3 | 3 | |
| 1sizMin | 9 | 3 | |
| 3tolMin | 11 | 3 | |
| 4tolMax | 12 | 3 | |
| 2sizeMax | 10 | 3 | |
+----------+----------+--------+--+


c# code



var sizMinStringFrst = "";
var sizMinStringSnd = "";
var sizMinStringThrd = "";
var sizMinStringFr = "";
int StdSize = 0;
var lblStdSize_Tolerm =htmltable
while (ReadData.Read())
{
if (prop_name == "1sizMin")
{
sizMinStringFrst = tdc_property;
StdSize = StdSize+1;
}
if (prop_name == "2sizeMax")
{
sizMinStringSnd = tdc_property;
StdSize = StdSize + 1;
}
if (prop_name == "3tolMin")
{
sizMinStringThrd = tdc_property;
StdSize = StdSize + 1;
}
if (prop_name == "4tolMax")
{
sizMinStringFr = tdc_property;
StdSize = StdSize + 1;
}
if (StdSize % 4 == 0)
{
var newTable = "<tr><td class='td-First-col-value'><center>" + sizMinStringFrst + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringSnd + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringThrd + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringFr + "</center></td></tr>";
lblStdSize_Tolerm = lblStdSize_Tolerm + newTable;

}
}
lblStdSize_Toler.Text = lblStdSize_Tolerm+ "</table>";


I have defined four varible at top to store property value
and StdSize variable as a counter and divide it with 4 so that when first row column data found then it will append to table similarly second but logic is some wrong .after exit the loop this table will bind to a label any idea how to implement this will be appreciated.










share|improve this question























  • What result do you get with this code? Did you try to debug the code and check the variable values at each step to understand what is the logic issue?

    – Chetan Ranpariya
    Nov 21 '18 at 7:37
















0












0








0








While reading data it is coming in below mentioned order what i want first read first row of data of grid then append it to table then read second row and then append.i mean first value read 1sizMin,2sizeMax,3tolMin,4tolMax of rownum=1 then 2nd,3rd but not getting idea how to do.



+----------+----------+--------+--+
| prop_name | property | rownum | |
+----------+----------+--------+--+
| 1NDia | 1 | 1 | |
| 1sizMin | 1 | 1 | |
| 3tolMin | 3 | 1 | |
| 4tolMax | 4 | 1 | |
| 2sizeMax | 2 | 1 | |
| 1NDia | 2 | 2 | |
| 1sizMin | 5 | 2 | |
| 3tolMin | 7 | 2 | |
| 4tolMax | 8 | 2 | |
| 2sizeMax | 6 | 2 | |
| 1NDia | 3 | 3 | |
| 1sizMin | 9 | 3 | |
| 3tolMin | 11 | 3 | |
| 4tolMax | 12 | 3 | |
| 2sizeMax | 10 | 3 | |
+----------+----------+--------+--+


c# code



var sizMinStringFrst = "";
var sizMinStringSnd = "";
var sizMinStringThrd = "";
var sizMinStringFr = "";
int StdSize = 0;
var lblStdSize_Tolerm =htmltable
while (ReadData.Read())
{
if (prop_name == "1sizMin")
{
sizMinStringFrst = tdc_property;
StdSize = StdSize+1;
}
if (prop_name == "2sizeMax")
{
sizMinStringSnd = tdc_property;
StdSize = StdSize + 1;
}
if (prop_name == "3tolMin")
{
sizMinStringThrd = tdc_property;
StdSize = StdSize + 1;
}
if (prop_name == "4tolMax")
{
sizMinStringFr = tdc_property;
StdSize = StdSize + 1;
}
if (StdSize % 4 == 0)
{
var newTable = "<tr><td class='td-First-col-value'><center>" + sizMinStringFrst + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringSnd + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringThrd + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringFr + "</center></td></tr>";
lblStdSize_Tolerm = lblStdSize_Tolerm + newTable;

}
}
lblStdSize_Toler.Text = lblStdSize_Tolerm+ "</table>";


I have defined four varible at top to store property value
and StdSize variable as a counter and divide it with 4 so that when first row column data found then it will append to table similarly second but logic is some wrong .after exit the loop this table will bind to a label any idea how to implement this will be appreciated.










share|improve this question














While reading data it is coming in below mentioned order what i want first read first row of data of grid then append it to table then read second row and then append.i mean first value read 1sizMin,2sizeMax,3tolMin,4tolMax of rownum=1 then 2nd,3rd but not getting idea how to do.



+----------+----------+--------+--+
| prop_name | property | rownum | |
+----------+----------+--------+--+
| 1NDia | 1 | 1 | |
| 1sizMin | 1 | 1 | |
| 3tolMin | 3 | 1 | |
| 4tolMax | 4 | 1 | |
| 2sizeMax | 2 | 1 | |
| 1NDia | 2 | 2 | |
| 1sizMin | 5 | 2 | |
| 3tolMin | 7 | 2 | |
| 4tolMax | 8 | 2 | |
| 2sizeMax | 6 | 2 | |
| 1NDia | 3 | 3 | |
| 1sizMin | 9 | 3 | |
| 3tolMin | 11 | 3 | |
| 4tolMax | 12 | 3 | |
| 2sizeMax | 10 | 3 | |
+----------+----------+--------+--+


c# code



var sizMinStringFrst = "";
var sizMinStringSnd = "";
var sizMinStringThrd = "";
var sizMinStringFr = "";
int StdSize = 0;
var lblStdSize_Tolerm =htmltable
while (ReadData.Read())
{
if (prop_name == "1sizMin")
{
sizMinStringFrst = tdc_property;
StdSize = StdSize+1;
}
if (prop_name == "2sizeMax")
{
sizMinStringSnd = tdc_property;
StdSize = StdSize + 1;
}
if (prop_name == "3tolMin")
{
sizMinStringThrd = tdc_property;
StdSize = StdSize + 1;
}
if (prop_name == "4tolMax")
{
sizMinStringFr = tdc_property;
StdSize = StdSize + 1;
}
if (StdSize % 4 == 0)
{
var newTable = "<tr><td class='td-First-col-value'><center>" + sizMinStringFrst + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringSnd + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringThrd + "</center></td>" +
"<td class='td-First-col-value'><center>" + sizMinStringFr + "</center></td></tr>";
lblStdSize_Tolerm = lblStdSize_Tolerm + newTable;

}
}
lblStdSize_Toler.Text = lblStdSize_Tolerm+ "</table>";


I have defined four varible at top to store property value
and StdSize variable as a counter and divide it with 4 so that when first row column data found then it will append to table similarly second but logic is some wrong .after exit the loop this table will bind to a label any idea how to implement this will be appreciated.







c# asp.net






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 '18 at 6:43









MohanMohan

608




608













  • What result do you get with this code? Did you try to debug the code and check the variable values at each step to understand what is the logic issue?

    – Chetan Ranpariya
    Nov 21 '18 at 7:37





















  • What result do you get with this code? Did you try to debug the code and check the variable values at each step to understand what is the logic issue?

    – Chetan Ranpariya
    Nov 21 '18 at 7:37



















What result do you get with this code? Did you try to debug the code and check the variable values at each step to understand what is the logic issue?

– Chetan Ranpariya
Nov 21 '18 at 7:37







What result do you get with this code? Did you try to debug the code and check the variable values at each step to understand what is the logic issue?

– Chetan Ranpariya
Nov 21 '18 at 7:37














0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406544%2ftrying-to-append-row-wise-data-in-a-variable-in-sequential-order%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406544%2ftrying-to-append-row-wise-data-in-a-variable-in-sequential-order%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter