Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Ali Al Omairi Abu AlHassan

@Ali Al Omairi Abu AlHassan
About
Posts
390
Topics
81
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Illustrating ad emails
    A Ali Al Omairi Abu AlHassan

    Hi guys I am writing a tool for meeting management in my organization so I use ews managed api to call the exchange server What I need to do is showing the ad user emails just like when you press to button in the outlook Anyone can help me with this

    Help people,so poeple can help you.

    ASP.NET sysadmin json help

  • WCF Service is giving faulted Exception
    A Ali Al Omairi Abu AlHassan

    this exception means that you have some thing wrong n the server side and you cant use this channel any more see this page Help people,so poeple can help you.

    ASP.NET architecture help csharp asp-net wcf

  • ghjg
    A Ali Al Omairi Abu AlHassan

    <> Help people,so poeple can help you.

    ASP.NET help

  • Tab Control
    A Ali Al Omairi Abu AlHassan

    because they don't belong to the page flow but anchored to the page, right? :)

    Help people,so poeple can help you.

    Web Development html css architecture

  • Tab Control
    A Ali Al Omairi Abu AlHassan

    Thanks Richard, clearfix solution is a great idea for getting rid of the unwanted floating (I'll consider to use that ;) ) but I was talking about the lists in the second level they are absolutely positioned relative to the outer list. it is just like they were removed from the page and anchored to the outer list using left, right, and top. what I am for is how to stretch the height of the outer list without setting the height with java script.

    Help people,so poeple can help you.

    Web Development html css architecture

  • Replies count
    A Ali Al Omairi Abu AlHassan

    Dear Sir; With regarding to the thread view button, the count doesn't appear correct because the root message is counted with the replies. Either you change the text to "View the 2 messages in this thread" or "View the 1 replay to this message", but not View the 2 replies to this message

    Help people,so poeple can help you.

    Site Bugs / Suggestions help question

  • How To Get Markup Of Page Using Chrome DevTools
    A Ali Al Omairi Abu AlHassan

    I dont know i understood you but you may right-click the root element in the elements panel and choose edit as html, then copy the text and past it to a text file.

    Help people,so poeple can help you.

    Web Development question javascript html css mobile

  • Tab Control
    A Ali Al Omairi Abu AlHassan

    Guys; I have created this control to present a tab page control

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Tab Control</title>
    <style type="text/css">
    .tabcontrol {
    list-style:none;
    padding: 8px;
    margin:3px;
    background-color:lightgray;
    position:relative;
    }
    .tabcontrol>li {
    float:left;
    margin-right:4px;
    }
    .tabcontrol>li>span {
    display:inline-block;
    background-color:gray;
    margin:0;
    padding:3px;
    border:solid 1px silver;
    cursor:pointer;
    }
    .tabcontrol>li>span:hover {
    background-color:lightgray;
    }
    .tabcontrol>li.selected>span {
    background-color:#fff;
    font-weight:bold;
    }
    .tabcontrol>li>ul {
    display:none;
    left:0;
    right:0;
    position:absolute;
    background-color:#fff;
    border:solid 1px silver;
    margin: 0 8px;
    padding:4px;
    list-style:none;
    }
    .tabcontrol>li.selected>ul {
    display:block;
    }
    .tabcontrol>li>ul>li {
    float:left;
    width:100px;
    height:100px;
    background-color:blue;
    color:#fff;
    margin:5px;
    padding:2px;
    text-align:center;
    }
    </style>
    </head>
    <body>
    <ul class="tabcontrol" style="height:154px;">
    <li>
    <span>Tab page 1</span>
    <ul>
    <li>Box 1.1</li>
    <li>Box 1.2.</li>
    <li>Box 1.3.</li>
    </ul>
    </li>
    <li class="selected">
    <span>Tab page 2</span>
    <ul>
    <li>Box 2.1.</li>
    <li>Box 2.2.</li>
    <li>Box 2.3.</li>
    </ul>
    </li>
    <li>
    <span>Tab page 3</span>
    <ul>
    <li>Box 3.1.</li>
    <li>Box 3.2.</li>
    <li>

    Web Development html css architecture

  • How to Insert Update And Delete Record for html table in asp.net without gridview ?
    A Ali Al Omairi Abu AlHassan

    use jquery

    Help people,so poeple can help you.

    ASP.NET csharp html asp-net help tutorial

  • continuously scroll multiple pictures on a web page using c# and html
    A Ali Al Omairi Abu AlHassan

    This is a picture

    This is a picture

    This is a picture

    This is a picture

    then add a div with width that contains all the pictures in one row inside your viewport and give your viewport overflow style

    Help people,so poeple can help you.

    Web Development csharp html

  • continuously scroll multiple pictures on a web page using c# and html
    A Ali Al Omairi Abu AlHassan

    Do you mean like this:

    This is a picture

    This is a picture

    This is a picture

    This is a picture

    if so just add overflow-x, overflow-y, and overflow to css

    Help people,so poeple can help you.

    Web Development csharp html

  • opacity inheritance
    A Ali Al Omairi Abu AlHassan

    guys; I need to place a picture on a panel that has opacity less than 1, but i don't want this picture to inherit the opacity. Can you help me with that please.

    Help people,so poeple can help you.

    Web Development css oop help

  • Current date
    A Ali Al Omairi Abu AlHassan

    easily. When a student logged in you save getdate() which would return the database time. or you pass the value of DateTime.Now for the web server time. and you can do the same for the time you want to send it with the response.

    Help people,so poeple can help you.

    ASP.NET help tutorial csharp asp-net database

  • Viewstate spider web
    A Ali Al Omairi Abu AlHassan

    guys; I gave a problem with __VIEWSTATE hidden input it lays on the page like a huge spider web. I want to reduce its size efficiently without adding enableViewState="false" to every control. is it possible to do so?

    Help people,so poeple can help you.

    ASP.NET help question

  • Current date
    A Ali Al Omairi Abu AlHassan

    I think that you should not use the client date instead use your server date on student login so you would face no problem as the server date appears on the screen.

    Help people,so poeple can help you.

    ASP.NET help tutorial csharp asp-net database

  • Creating three DIVS, left and right fixed , center div scrolls
    A Ali Al Omairi Abu AlHassan

    you mean this layout?

    co nt en t co nt en t

    content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content

    co nt en t co nt en t

    if so try this code

    <div style="width:300px;height:400px;">
    <div style="width:250px;background-color:gray;margin:0 auto;">
    <div style="height:40px;border:dashed 1px blue;"></div>
    <div style="float:left;border:dashed 1px blue;width:22px;">content content content content </div>
    <div style="float:left;border:dashed 1px blue;width:200px;max-height:180px;overflow-y:auto;">content content content content </div>
    <div style="float:left;border:dashed 1px blue;width:22px;">content content content content </div>
    <div style="clear:both;"></div>
    </div>
    </div>

    and you can also use some jquery solution for scrolling

    Help people,so poeple can help you.

    ASP.NET css help

  • onsubmit event
    A Ali Al Omairi Abu AlHassan

    Thank you Sir My problem was't in validation but in add some data to the request that identify is used to distinguish between request threads associated with the page but not the session. my problem was that some post request is made by calling the pre-defined function __doPostBack that calls .submit for the form so the event would not be triggered. instead i added a custom validator with a validation function that adds my desired data and not to modify .IsValid value. in this way the framework would call DoBostPackWithOptions instead of __doPostBack so the my custom validation function would be called and when a submit button is clicked the function Page_ClientValidate would be called by triggering on submit event.

    Help people,so poeple can help you.

    ASP.NET json help tutorial question

  • onsubmit event
    A Ali Al Omairi Abu AlHassan

    guys; I use onsubmit event to add some data to the request when the form is submitting, but i notice that the handler is called when a submit button is clicked but not when .submit() function is called for the form. i don't know if this is normal. if so, what else can i try? another disappointing thing is that i found this sentence in this page[^] The form's onsubmit event handler (for example, onsubmit="return false;") will not be triggered when invoking this method.

    Help people,so poeple can help you.

    ASP.NET json help tutorial question

  • disappearing cookies
    A Ali Al Omairi Abu AlHassan

    Sir; Thank you for trying to help. The reason for cookies disappearing was, that I was mistakenly assigning a domain for the response cookies in the post request other than the actual domain, so they wont appear in the redirect request.

    Help people,so poeple can help you.

    ASP.NET help sysadmin

  • disappearing cookies
    A Ali Al Omairi Abu AlHassan

    guys; i have 2 request the first is post used to add cookies to response the other is a get request caused by Request.Redirect() call in the first one's server side. my expectation is to find the added cookies in the second's request cookies, but what really happens is that the added cookies disappear. please help me with this as i am stuck.

    ASP.NET help sysadmin
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups