Click here to Skip to main content
15,908,020 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Server Side Code and Client Side Code Pin
Kornfeld Eliyahu Peter26-Apr-15 20:32
professionalKornfeld Eliyahu Peter26-Apr-15 20:32 
QuestionHow do I assign Session value to label in Asp.net? Pin
samflex23-Apr-15 4:52
samflex23-Apr-15 4:52 
AnswerRe: How do I assign Session value to label in Asp.net? Pin
F-ES Sitecore23-Apr-15 22:37
professionalF-ES Sitecore23-Apr-15 22:37 
QuestionUse of LastOrDefault() Pin
Member 1096876723-Apr-15 0:16
Member 1096876723-Apr-15 0:16 
AnswerRe: Use of LastOrDefault() Pin
Richard Deeming23-Apr-15 2:05
mveRichard Deeming23-Apr-15 2:05 
QuestionHow to encrypt message in WCF by writing code Pin
Tridip Bhattacharjee22-Apr-15 22:05
professionalTridip Bhattacharjee22-Apr-15 22:05 
AnswerRe: How to encrypt message in WCF by writing code Pin
Richard MacCutchan22-Apr-15 23:28
mveRichard MacCutchan22-Apr-15 23:28 
AnswerRe: How to encrypt message in WCF by writing code Pin
Gerry Schmitz24-Apr-15 16:08
mveGerry Schmitz24-Apr-15 16:08 
QuestionMultiple page redirection in ASP.NET WebApi Pin
Abdul Shakoor p22-Apr-15 20:34
Abdul Shakoor p22-Apr-15 20:34 
Questiondefault gridview listing not showing on page Pin
spirospap22-Apr-15 14:30
spirospap22-Apr-15 14:30 
AnswerRe: default gridview listing not showing on page Pin
Richard Deeming23-Apr-15 2:00
mveRichard Deeming23-Apr-15 2:00 
GeneralRe: default gridview listing not showing on page Pin
spirospap23-Apr-15 12:34
spirospap23-Apr-15 12:34 
Questionasp.net, c# Pin
Member 1124536521-Apr-15 16:28
Member 1124536521-Apr-15 16:28 
QuestionASP.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 7:48
indian14320-Apr-15 7:48 
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 

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.