Click here to Skip to main content
15,887,267 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: posting to a href link Pin
tiwal5-May-14 0:03
tiwal5-May-14 0:03 
GeneralRe: posting to a href link Pin
Graham Breach5-May-14 0:18
Graham Breach5-May-14 0:18 
GeneralRe: posting to a href link Pin
tiwal5-May-14 0:31
tiwal5-May-14 0:31 
Questionlogin control not redirecting to previous page after login Pin
Nico Haegens3-May-14 10:37
professionalNico Haegens3-May-14 10:37 
AnswerRe: login control not redirecting to previous page after login Pin
Kornfeld Eliyahu Peter4-May-14 23:44
professionalKornfeld Eliyahu Peter4-May-14 23:44 
GeneralRe: login control not redirecting to previous page after login Pin
Nico Haegens5-May-14 0:08
professionalNico Haegens5-May-14 0:08 
GeneralRe: login control not redirecting to previous page after login Pin
Kornfeld Eliyahu Peter5-May-14 0:12
professionalKornfeld Eliyahu Peter5-May-14 0:12 
Questionhelp with making inner table borders white Pin
Nico Haegens1-May-14 5:34
professionalNico Haegens1-May-14 5:34 
Hi, I have a small table generated by a detailsview I would like to format:
there has to be a small white area between the cells in the table. I've tried a dozen things but no matter what I do,
I can't change the size or the color of the borders. They always stay at default border size and in black color.
I have pasted my code below. Please help.
CSS
<style>
    #content_DetailsView{
        position:absolute;
        left:360px;
        top:155px;
        border-collapse:collapse;
        margin-top:20px;
        border-spacing:100px;
        border-color:white;
        border-style:solid;
        border-width:50px;
    }
    content_GridView
    {
        margin-top:20px;
    }
    .gridviewheader th{background-color:blue;}
    .gridviewheader th a{color:white;}
    .gridviewrow{background-color:lightgray;}
    .gridviewaltrow{background-color:darkgray;}
    .gridviewselrow{background-color:blue;}
    .detailsviewrow{background-color:grey;border-collapse:separate}
    .detailsviewrow td{padding:0px;}
    .gridviewpagerrow{background-color:blue;}
    .gridviewpagerrow a{color:white;}
</style>

HTML
<table border="1" cellspacing="20" style="border-color:White;height:50px;width:125px;" id="content_DetailsView" rules="all">
        <tbody><tr class="detailsviewrow">
            <td>name</td><td>Alexandro Alexis</td>
        </tr><tr class="detailsviewrow">
            <td>address</td><td>3711 W Franklin</td>
        </tr><tr class="detailsviewrow">
            <td>email</td><td>alal@mma.yaleindustries.com</td>
        </tr><tr class="detailsviewrow">
            <td>phone</td><td>(559) 555-2993</td>
        </tr><tr class="detailsviewrow">
            <td>zipcode</td><td>93706</td>
        </tr><tr class="detailsviewrow">
            <td>city</td><td>Fresno</td>
        </tr><tr class="detailsviewrow">
            <td>customerid</td><td>1019</td>
        </tr><tr class="detailsviewrow">
            <td>statecode</td><td>
                    <span id="content_DetailsView_Label1">CA</span>
                </td>
        </tr><tr class="detailsviewrow">
            <td colspan="2"><input type="button" onclick="javascript:__doPostBack('ctl00$content$DetailsView','Edit$0')" value="Bewerken">&nbsp;<input type="button" onclick="javascript:__doPostBack('ctl00$content$DetailsView','Delete$0')" value="Verwijderen">&nbsp;<input type="button" onclick="javascript:__doPostBack('ctl00$content$DetailsView','New$0')" value="Nieuw"></td>
        </tr>
    </tbody></table>

AnswerRe: help with making inner table borders white Pin
Richard Deeming1-May-14 6:00
mveRichard Deeming1-May-14 6:00 
GeneralRe: help with making inner table borders white Pin
Nico Haegens1-May-14 6:20
professionalNico Haegens1-May-14 6:20 
GeneralRe: help with making inner table borders white Pin
Richard Deeming1-May-14 6:27
mveRichard Deeming1-May-14 6:27 
GeneralRe: help with making inner table borders white Pin
Nico Haegens1-May-14 7:00
professionalNico Haegens1-May-14 7:00 
Questionhelp with CSS Pin
Jassim Rahma30-Apr-14 12:44
Jassim Rahma30-Apr-14 12:44 
AnswerRe: help with CSS Pin
vbmike3-May-14 12:13
vbmike3-May-14 12:13 
QuestionHow do I extract contents of php file and dump into a variable called aaData? Pin
samflex30-Apr-14 7:12
samflex30-Apr-14 7:12 
QuestionOwin Pin
ernest_hemingway07730-Apr-14 2:56
professionalernest_hemingway07730-Apr-14 2:56 
Questionwhat & how to prepare for ASP.net and php interview in one month Pin
Akash Tripathi29-Apr-14 4:03
Akash Tripathi29-Apr-14 4:03 
SuggestionRe: what & how to prepare for ASP.net and php interview in one month Pin
Richard Deeming29-Apr-14 4:40
mveRichard Deeming29-Apr-14 4:40 
QuestionAbout PHP and ASP Discussion Pin
Abhinandan Nimsarkar29-Apr-14 0:35
Abhinandan Nimsarkar29-Apr-14 0:35 
AnswerRe: About PHP and ASP Discussion Pin
thatraja29-Apr-14 2:28
professionalthatraja29-Apr-14 2:28 
GeneralRe: About PHP and ASP Discussion Pin
Abhinandan Nimsarkar29-Apr-14 2:57
Abhinandan Nimsarkar29-Apr-14 2:57 
GeneralRe: About PHP and ASP Discussion Pin
thatraja29-Apr-14 3:33
professionalthatraja29-Apr-14 3:33 
QuestionMy data is not loading into another tab when clicked. Any ideas? Pin
samflex28-Apr-14 17:00
samflex28-Apr-14 17:00 
QuestionServer returned HTTP response code: 403 for URL: ....? Pin
Hy Chanhan28-Apr-14 16:40
professionalHy Chanhan28-Apr-14 16:40 
AnswerRe: Server returned HTTP response code: 403 for URL: ....? Pin
Kornfeld Eliyahu Peter28-Apr-14 21:55
professionalKornfeld Eliyahu Peter28-Apr-14 21:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.