Click here to Skip to main content
15,887,746 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: ASP.Application is giving "An unhandled win32 exception occured in w3wp.exe The Just-In-Time debugger was launched without necessary security permissions" error Pin
indian14320-Apr-15 10:20
indian14320-Apr-15 10:20 
Questionquestion Pin
yousfi amina19-Apr-15 0:20
yousfi amina19-Apr-15 0:20 
AnswerRe: question Pin
Richard Andrew x6419-Apr-15 13:00
professionalRichard Andrew x6419-Apr-15 13:00 
QuestionHow to write to fileOutputStream mapped to physical file c# Pin
Tridip Bhattacharjee17-Apr-15 10:04
professionalTridip Bhattacharjee17-Apr-15 10:04 
QuestionRe: How to write to fileOutputStream mapped to physical file c# Pin
jkirkerx17-Apr-15 13:04
professionaljkirkerx17-Apr-15 13:04 
AnswerRe: How to write to fileOutputStream mapped to physical file c# Pin
Tridip Bhattacharjee18-Apr-15 7:48
professionalTridip Bhattacharjee18-Apr-15 7:48 
AnswerRe: How to write to fileOutputStream mapped to physical file c# Pin
jkirkerx19-Apr-15 12:09
professionaljkirkerx19-Apr-15 12:09 
QuestionMake image appear after div, and next dive appear after image Pin
indian14316-Apr-15 9:29
indian14316-Apr-15 9:29 
Hi All,

I am using an asp.net application page to show the contents on the page with line break and OR image on the line break, I am not yet done with image itself, the problem is image appears at an inappropriate space or never appears as I have been trying with several options. Here I am putting this code that I am currently using. Can you please advice me or help me with any idea or code snippet or link any thing can be helpful, thank and your help is much appreciated as I am getting tired with this, searching on the internet no help so far but still trying.

Thanks in advance and here is the code.
<ol>
    <li id="first-option" class="first-option">
        <div class="paren"></div>
        <div class="full col">
            <label for="txtFirstName">First Name</label>
            <asp:TextBox ID="txtFirstName" runat="server" ClientIDMode="Static" Enabled="false" />
        </div>

        <div class="full col">
            <label for="txtLastName">Last Name</label>
            <asp:TextBox ID="txtLastName" runat="server" ClientIDMode="Static" Enabled="false" />
        </div>

        <div class="full col">
            <label for="txtBirthDate">Date of Birth</label>
            <elms:DateTextBox ID="txtBirthDate" runat="server" ClientIDMode="Static" />
        </div>

        <div class="full col">
            <label for="txtEmailAddress">Email Address</label>
            <asp:TextBox ID="txtEmailAddress" runat="server" ClientIDMode="Static" />
        </div>

        <div class="full col">
            <label for="txtEmailAddress2">Verify Email Address</label>
            <asp:TextBox ID="txtEmailAddress2" runat="server" ClientIDMode="Static" />
        </div>
    </li>

    <li id="or-divider" class="or-divider"><span></span></li>
    <li id="second-option" class="second-option">
        <div class="paren"></div>
        <div class="full col">
            <label for="txtStarsId" runat="server">STARS ID</label>
            <asp:TextBox ID="txtStarsId" runat="server" ClientIDMode="Static" />
        </div>
    </li>
</ol>
<div class="action-buttons">
    <asp:Button ID="btnSave" ClientIDMode="Static" runat="server" Text="Save" />
    <asp:Button ID="btnCancel" ClientIDMode="Static" runat="server" Text="Cancel" />
</div>
CSS here, but with this the OR appears at the bottom and over the save and cancel buttons, which is not good and the numbers 1 and 2 appears over the first li's items, not useful and I don't why 1 appears only half, please help me if you can
or-divider 
{
    position:absolute;
    border:none;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.or-divider > span
{
    background:transparent url('../../../images/OR-Small.png') no-repeat top center;
    background-color:White;
    position:absolute;
    font-size:1.3em;
    font-weight:bold;
    top: inherit;
    display: inline-block;
    left: 40%;
    height:20px;
    width:80px;
    z-index:1000;
}

<h1>or-divider + li</h1>

{
    padding-top:30px;
}

.my-container > ol > li > span:first-child 
{
    display:block;
    margin-bottom:5px;
}

.my-container > ol > li:first-child > select,
.my-container > ol > li:first-child > .chosen-container
{
    width:100%;
    margin-bottom:5px;
}

div.paren 
{
    position:absolute;
    left:25px;
    top:0;
    height:47px;
    width:15px;
    background:transparent url('../../../images/Close-Paren.png') no-repeat left top;
}

<h1>first-option,</h1>

<h1>second-option</h1>

{
    position:relative;
    padding-left:50px;
}

<h1>first-option</h1>

{
    background:transparent url('../../../images/1.png') no-repeat 2px 3px;
}

<h1>second-option</h1>

{
    min-height:40px;
    background:transparent url('../../../images/2.png') no-repeat left 33px;
}

<h1>second-option div.paren</h1>

{
    background-position:left 30px;
    height:77px;
}
"There is enough hatred in the world, lets spread love compassion and affection."

AnswerRe: Make image appear after div, and next dive appear after image Pin
jkirkerx16-Apr-15 13:24
professionaljkirkerx16-Apr-15 13:24 
QuestionBulk insert using table value parameter hangs my application Pin
Malikdanish15-Apr-15 21:04
professionalMalikdanish15-Apr-15 21:04 
AnswerRe: Bulk insert using table value parameter hangs my application Pin
jkirkerx16-Apr-15 8:58
professionaljkirkerx16-Apr-15 8:58 
GeneralRe: Bulk insert using table value parameter hangs my application Pin
Malikdanish16-Apr-15 9:04
professionalMalikdanish16-Apr-15 9:04 
GeneralRe: Bulk insert using table value parameter hangs my application Pin
jkirkerx16-Apr-15 10:41
professionaljkirkerx16-Apr-15 10:41 
GeneralRe: Bulk insert using table value parameter hangs my application Pin
Malikdanish16-Apr-15 20:45
professionalMalikdanish16-Apr-15 20:45 
GeneralRe: Bulk insert using table value parameter hangs my application Pin
jkirkerx17-Apr-15 8:02
professionaljkirkerx17-Apr-15 8:02 
GeneralRe: Bulk insert using table value parameter hangs my application Pin
Malikdanish17-Apr-15 18:29
professionalMalikdanish17-Apr-15 18:29 
GeneralRe: Bulk insert using table value parameter hangs my application Pin
jkirkerx19-Apr-15 9:18
professionaljkirkerx19-Apr-15 9:18 
Questionissue wih gridview Pin
Praveen Kandari15-Apr-15 0:20
Praveen Kandari15-Apr-15 0:20 
SuggestionRe: issue wih gridview Pin
ZurdoDev15-Apr-15 3:31
professionalZurdoDev15-Apr-15 3:31 
AnswerRe: issue wih gridview Pin
User 418025410-Jul-15 11:18
User 418025410-Jul-15 11:18 
GeneralRe: issue wih gridview Pin
Praveen Kandari15-Jul-15 19:17
Praveen Kandari15-Jul-15 19:17 
GeneralRe: issue wih gridview Pin
User 418025416-Jul-15 2:21
User 418025416-Jul-15 2:21 
QuestionHow to fix “Googlebot can't access your site” issue? Pin
Tridip Bhattacharjee14-Apr-15 21:16
professionalTridip Bhattacharjee14-Apr-15 21:16 
AnswerRe: How to fix “Googlebot can't access your site” issue? Pin
Richard Deeming15-Apr-15 1:38
mveRichard Deeming15-Apr-15 1:38 
AnswerRe: How to fix “Googlebot can't access your site” issue? Pin
ZurdoDev15-Apr-15 3:32
professionalZurdoDev15-Apr-15 3:32 

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.