I want to change to column 2

patrick

Well-known member
Joined
Dec 5, 2021
Messages
251
Programming Experience
1-3
Hello
I want to change to column 2

p1.png




The current one-column source code is as follows.

C#:
htmlBuilder.AppendLine("<li><a href='#'><i class='ico_info'></i>기준정보 관리</a>");
htmlBuilder.AppendLine("<ul id='ulInfoMgt' class='sub_menu'>");
htmlBuilder.AppendLine(DrawUserPageList(strPageGrp, p_dsp));
htmlBuilder.AppendLine("</ul>");
htmlBuilder.AppendLine("</li>");
 
Of course there are examples, which is why it's not for us to just write your code for you. Do some research to see how to build a table in HTML and make your best attempt to do it. If you run into an actual issue, then you should post a question back here, showing us what you have done and explaining where you are stuck. We'll be happy to help with issues like that. "I want X, you do it for me" will not be met with much enthusiasm.
 
Back
Top Bottom