Click here to Skip to main content
15,913,773 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionproblem while binding the data with gridview Pin
hahii14-May-09 4:39
hahii14-May-09 4:39 
AnswerRe: problem while binding the data with gridview Pin
Herman<T>.Instance14-May-09 4:46
Herman<T>.Instance14-May-09 4:46 
GeneralRe: problem while binding the data with gridview Pin
hahii14-May-09 5:05
hahii14-May-09 5:05 
GeneralRe: problem while binding the data with gridview Pin
Herman<T>.Instance14-May-09 5:42
Herman<T>.Instance14-May-09 5:42 
QuestionControls are not wraping on resizing IE. Pin
SRKSHOME14-May-09 4:01
SRKSHOME14-May-09 4:01 
GeneralRe: Controls are not wraping on resizing IE. Pin
jbracken197314-May-09 4:53
jbracken197314-May-09 4:53 
GeneralRe: Controls are not wraping on resizing IE. Pin
SRKSHOME14-May-09 18:34
SRKSHOME14-May-09 18:34 
GeneralRe: Controls are not wraping on resizing IE. Pin
jbracken197315-May-09 1:14
jbracken197315-May-09 1:14 
A TD is not going to fall below another TD, it is what makes it a table.   The TDs are shrinking down to the smallest they can go.   As an alternative try using DIV tags I think it will get you a bit closer to what you are looking for.

<div>
      <div style="float: left;">
         <select name="_ctl26" id="Select1" class="control">
            <option selected="selected" value="entity_name">Name</option>
            <option value="DS_mnem">DS Mnemonic</option>
         </select></div>
      <div style="float: left;">
         <span class='controlNameSeparator'></span>
      </div>
      <div style="float: left;">
         <select name="_ctl27" id="Select2" class="control">
            <option value="Contains">Contains</option>
            <option value="Equals">Equals</option>
            <option value="StartsWith">Starts With</option>
            <option value="DoesNotContain">Does Not Contain</option>
         </select></div>
      <div style="float: left;">
         <span class='controlNameSeparator'></span>
      </div>
      <div style="float: left;">
         <input name="_ctl28" type="text" id="Text1" class="border" maxlength="75" onkeydown="return event.keyCode==13?OnExplorerSearchClick():true" /></div>
      <div style="float: left;">
         <span class='controlNameSeparator'></span>
      </div>
      <div style="float: left;">
         <span class="controlLabel">Currency Equals</span>
         <span class='controlNameSeparator'></span>
         <select name="_ctl30" id="Select3" style="z-index: 100;" class="controlLabel">
            <option value="All">All</option>
            <option value="Euro">Euro</option>
            <option value="United States Dollar">United States Dollar</option>
         </select></div>
      <div style="float: left;">
         <span class='controlNameSeparator'></span>
      </div>
      <div style="float: left;">
         <span class="controlLabel">IBES Equals</span>
         <span class='controlNameSeparator'></span>
         <select name="_ctl32" id="Select4" style="z-index: 100;" class="controlLabel">
            <option value="All">All</option>
            <option value="No">No</option>
            <option value="Yes">Yes</option>
         </select></div>
      <div style="float: left;">
         <span class='controlNameSeparator'></span>
      </div>
      <div style="float: left;">
         <span class="controlLabel">MSCI Equals</span>
         <span class='controlNameSeparator'></span>
         <select name="_ctl34" id="Select5" style="z-index: 100;" class="controlLabel">
            <option value="All">All</option>
            <option value="No">No</option>
            <option value="Yes">Yes</option>
         </select></div>
      <div style="float: left;">
         <span class='controlNameSeparator'></span>
      </div>
      <div style="float: left;">
         <span class="controlLabel">WS Equals</span>
         <span class='controlNameSeparator'></span>
         <select name="_ctl36" id="Select6" style="z-index: 100;" class="controlLabel">
            <option value="All">All</option>
            <option value="No">No</option>
            <option value="Yes">Yes</option>
         </select></div>
      <div style="float: left;">
         <span class='controlNameSeparator'></span>
      </div>
      <div style="float: left;">
         <span class="controlLabel">Exchange Equals</span>
         <span class='controlNameSeparator'></span>
         <select name="_ctl38" id="Select7" style="z-index: 100;" class="controlLabel">
            <option value="All">All</option>
            <option value="Frankfurt">Frankfurt</option>
            <option value="London">London</option>
            <option value="NASDAQ">NASDAQ</option>
            <option value="New York">New York</option>
            <option value="Non NASDAQ OTC">Non NASDAQ OTC</option>
            <option value="NYSE Alternext">NYSE Alternext</option>
            <option value="OTC Bulletin Board">OTC Bulletin Board</option>
         </select></div>
      <div style="float: left;">
         <span class='controlNameSeparator'></span>
      </div>
      <div style="float: left;">
         <input name="_ctl39" type="button" onclick="OnExplorerSearchClick();" value="Filter"
            onmouseout="MouseOut(this);" onmouseover="MouseOver(this);" class="search" /></div>
      <div style="float: left;">
         <span class='controlNameSeparator'></span>
      </div>
      <div style="float: left;">
         <input name="_ctl40" type="button" onclick="resetFilter();" value="Reset" onmouseout="MouseOut(this);"
            onmouseover="MouseOver(this);" class="search" /></div>
   </div>
QuestionError using session variable in vbscript with code behind file Pin
dptalt14-May-09 3:45
dptalt14-May-09 3:45 
AnswerRe: Error using session variable in vbscript with code behind file Pin
Ramesh Swaminathan14-May-09 4:13
Ramesh Swaminathan14-May-09 4:13 
GeneralRe: Error using session variable in vbscript with code behind file Pin
dptalt14-May-09 4:36
dptalt14-May-09 4:36 
AnswerRe: Error using session variable in vbscript with code behind file Pin
AlexeiXX314-May-09 8:33
AlexeiXX314-May-09 8:33 
GeneralRe: Error using session variable in vbscript with code behind file Pin
dptalt14-May-09 9:20
dptalt14-May-09 9:20 
GeneralRe: Error using session variable in vbscript with code behind file Pin
dptalt14-May-09 10:03
dptalt14-May-09 10:03 
GeneralRe: Error using session variable in vbscript with code behind file Pin
AlexeiXX314-May-09 10:11
AlexeiXX314-May-09 10:11 
Questionrepeater control Pin
kanadoss14-May-09 2:48
kanadoss14-May-09 2:48 
AnswerRe: repeater control Pin
Christian Graus14-May-09 2:50
protectorChristian Graus14-May-09 2:50 
Questiononly first row from datareader gets affected Pin
svknair14-May-09 1:38
svknair14-May-09 1:38 
AnswerRe: only first row from datareader gets affected Pin
Christian Graus14-May-09 2:51
protectorChristian Graus14-May-09 2:51 
AnswerRe: only first row from datareader gets affected Pin
Ramesh Swaminathan14-May-09 2:52
Ramesh Swaminathan14-May-09 2:52 
GeneralRe: only first row from datareader gets affected Pin
Christian Graus14-May-09 3:01
protectorChristian Graus14-May-09 3:01 
GeneralBasic Photography Web Site (PLZ H3LP IRGint!!!) Pin
Brady Kelly14-May-09 0:59
Brady Kelly14-May-09 0:59 
GeneralRe: Basic Photography Web Site (PLZ H3LP IRGint!!!) Pin
Christian Graus14-May-09 1:09
protectorChristian Graus14-May-09 1:09 
GeneralCheckout XARA Pin
David Mujica14-May-09 3:31
David Mujica14-May-09 3:31 
Questiontable inside a href=".." Question? Pin
mrcooll14-May-09 0:59
mrcooll14-May-09 0:59 

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.