Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Jun 25, 2012 07:57 PM by MyronCope
Participant
1656 Points
1345 Posts
Jun 25, 2012 01:52 PM|LINK
using vb.net/vs.net 2008.
I am looking for actual HTML markup examples where the column name and items in each row are hard-coded because I am creating a mockup to show screenshots. any examples?
thanks
MC
All-Star
34177 Points
5490 Posts
Jun 25, 2012 02:06 PM|LINK
are you lokking for way to create hardcoded html table like this?
<table border=1> <tr> <th> User Name </th> <th> Email Address </th> <th> Contact Number </th> </tr> <tr> <td> ABC </td> <td> ABC@ABC.com </td> <td> 123 </td> </tr> <tr> <td> LMN </td> <td> LMN@lmn.com </td> <td> 456 </td> </tr> <tr> <td> XYZ </td> <td> XYZ@xyz.com </td> <td> 789 </td> </tr> </table>
or I didnt get your question?
Jun 25, 2012 07:57 PM|LINK
that was kind of it, but really i was looking for hardcoded gridvidview values for screenshots,.
I ended up in vb.net creating datatable and binding it to gridview there
MyronCope
Participant
1656 Points
1345 Posts
gridview example hard-coded column and item values for mockup
Jun 25, 2012 01:52 PM|LINK
using vb.net/vs.net 2008.
I am looking for actual HTML markup examples where the column name and items in each row are hard-coded because I am creating a mockup to show screenshots. any examples?
thanks
MC
kedarrkulkar...
All-Star
34177 Points
5490 Posts
Re: gridview example hard-coded column and item values for mockup
Jun 25, 2012 02:06 PM|LINK
are you lokking for way to create hardcoded html table like this?
<table border=1> <tr> <th> User Name </th> <th> Email Address </th> <th> Contact Number </th> </tr> <tr> <td> ABC </td> <td> ABC@ABC.com </td> <td> 123 </td> </tr> <tr> <td> LMN </td> <td> LMN@lmn.com </td> <td> 456 </td> </tr> <tr> <td> XYZ </td> <td> XYZ@xyz.com </td> <td> 789 </td> </tr> </table>or I didnt get your question?
KK
Please mark as Answer if post helps in resolving your issue
My Site
MyronCope
Participant
1656 Points
1345 Posts
Re: gridview example hard-coded column and item values for mockup
Jun 25, 2012 07:57 PM|LINK
that was kind of it, but really i was looking for hardcoded gridvidview values for screenshots,.
I ended up in vb.net creating datatable and binding it to gridview there