Hi, I wanted to build a browser add-on (like Java Applet) in a web app that can read data from USB, is there such thing in .NET world where I can use c# as the programming language?
Thanks in advance!
Thanks PWise! It works perfectly. I did one small modifiction: isnull only takes 2 parameters in t-sql, therefore i've replaced it with a case exp as follows:
(case when Score is null then 0 else 1 end) as bit
Hi, I have a table A with one decimal-typed column Score. Now I want to create a view with A.Score and an additional bit-type column as follows:
1 - if the score is ranked as top 20% high score;
0 - otherwise.
I tried to create a view as: select A.score, IsTop20Perc(A.score) from A;
with...
Thanks Vragabond! I guess I have to go for the table design cos my content column (middle part) needs to have dynamic width (the width could be 770px in one page and 400px in another). I cannot create a vertical tiled backgroung image for every such page that uses this layout. And I want the...
I was trying to convert a <table> to <div> but I met a problem that the 3rd column (<div>) didn't expand to full height. Could you please help?
Here's the table:
<table cellpadding=0 cellspacing=0 width="800px">
<tr>
<td style="background:url(images/mid_left.png)...
These two IE7 versions seem to render button & select tags differently (just like different themes). I get the info from this link (http://support.microsoft.com/kb/969393/) that IC stands for Internet Content Provider. But im confused at what is the possible thing that leads to the IC version to...
Sorry for the confusing. I should have posted the full code at the beginning. Your link on how to combat floating issues solves my problem. I tested on IE8 & IE7 and it works. Thanks a lot!!
Here's the HTML code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
Thanks! I don't have a parent element with a defined height, funny thing is that #Content expand correctly with its inner content in IE7, but in IE8 it just shows half an inch... Here's the page structure:
<div id="Content">
<div>some content with dynamic height</div>
</div>
All I want is...
I have a page displaying fine in IE7 but not in IE8. It seems that "height:100%" isn't working. Does anyone know about this?
#Content
{
clear:both; height:100%;
background-color:#10509E; margin:0; padding:0; border:0px;
}
Thanks!!
I have a asp:wizard control (3 steps) which will be used for 2 different web app. In App1, I want to show step 1 and step 3 (hide step 2); In App2, I want to show all the steps.
Now I wrote the code in wizard_load event to control the show/hide of steps. But the problem is that when I hide...
I'm build a .aspx page which has a textbox and a button on it. When I click the button, I want to open a new window with the text in the textbox as parameter(query string). What I did is RegisterJavaScipt() in the Page_Load, and add a OnTextChanged of the textbox as follows:
protected void...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.