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

ASP.NET

 
GeneralRe: Inserting a blank date value in database Pin
Praneeth Babu K16-Mar-09 19:26
Praneeth Babu K16-Mar-09 19:26 
GeneralRe: Inserting a blank date value in database Pin
Christian Graus16-Mar-09 19:36
protectorChristian Graus16-Mar-09 19:36 
QuestionChat Pin
monika_vasvani16-Mar-09 18:36
monika_vasvani16-Mar-09 18:36 
AnswerRe: Chat Pin
Christian Graus16-Mar-09 18:45
protectorChristian Graus16-Mar-09 18:45 
AnswerRe: Chat Pin
_Maxxx_17-Mar-09 19:18
professional_Maxxx_17-Mar-09 19:18 
QuestionProblem With enternet exporer 6.0 Pin
ais0716-Mar-09 18:05
ais0716-Mar-09 18:05 
AnswerRe: Problem With enternet exporer 6.0 Pin
Christian Graus16-Mar-09 18:18
protectorChristian Graus16-Mar-09 18:18 
GeneralRe: Problem With enternet exporer 6.0 Pin
ais0716-Mar-09 18:23
ais0716-Mar-09 18:23 
Thanks For Reply,
This Code I had written in Master Page it is working properly in Mozila 2.0.

function showBox(str)
{
var width = document.documentElement.clientWidth + document.documentElement.scrollLeft;

var layer = document.createElement('div');
layer.style.zIndex = 2;
layer.id = 'layer';
layer.style.position = 'absolute';
layer.style.top = '0px';
layer.style.left = '0px';
layer.style.height = document.documentElement.scrollHeight + 'px';
layer.style.width = width + 'px';
layer.style.backgroundColor = 'LightGray';
layer.style.opacity = '.7';
layer.style.filter += ("progid:DXImageTransform.Microsoft.Alpha(opacity=80)");
document.body.appendChild(layer);


var div = document.createElement('div');
div.style.zIndex = 3;
div.id = 'box';
div.style.position = (navigator.userAgent.indexOf('MSIE 6') > -1) ? 'absolute' : 'fixed';
div.style.top = '200px';
div.style.left = (width / 2) - (400 / 2) + 'px';
div.style.height = '100px';
div.style.width = '400px';
div.style.backgroundColor = 'White';
div.style.border = '4px solid silver';
div.style.padding = '20px';
document.body.appendChild(div);


var myimg = document.createElement('IMG');
myimg.src= "../images3.jpg";
myimg.width= '50';
myimg.height = '50';
myimg.visible="true";
div.appendChild(myimg);


var p = document.createElement('p');
p.innerHTML = str;
p.style.position = "absolute";
p.style.top = '20px';
p.style.fontSize=14+'px';
p.style.fontWeight = "bold";
p.style.left = (width / 2) - (800 / 2) + 'px';
div.appendChild(p);

var btn=document.createElement('Button');
btn.innerHTML='Ok';
btn.style.border='2px solid silver';
btn.style.opacity = '.6';
btn.style.fontSize=16+'px';
btn.style.fontWeight = "bold";
btn.style.border='solid';
btn.style.position = "absolute";
btn.style.top = '100px';
btn.style.left = (width / 2) - (620 / 2) + 'px';

btn.onclick = function()
{
document.body.removeChild(document.getElementById('layer'));
document.body.removeChild(document.getElementById('box'));
};

div.appendChild(btn);
}
GeneralRe: Problem With enternet exporer 6.0 Pin
Christian Graus16-Mar-09 18:35
protectorChristian Graus16-Mar-09 18:35 
GeneralRe: Problem With enternet exporer 6.0 Pin
ais0716-Mar-09 18:37
ais0716-Mar-09 18:37 
GeneralRe: Problem With enternet exporer 6.0 Pin
Christian Graus16-Mar-09 19:03
protectorChristian Graus16-Mar-09 19:03 
QuestionDeleting is not supported by ObjectDataSource 'allUsersDataSource' unless the DeleteMethod is specified Pin
JimBob SquarePants16-Mar-09 16:20
JimBob SquarePants16-Mar-09 16:20 
QuestionFreeTextBox control Pin
dptalt16-Mar-09 10:15
dptalt16-Mar-09 10:15 
AnswerRe: FreeTextBox control Pin
Christian Graus16-Mar-09 10:27
protectorChristian Graus16-Mar-09 10:27 
AnswerRe: FreeTextBox control Pin
Yusuf16-Mar-09 10:29
Yusuf16-Mar-09 10:29 
QuestionConversion of html page to aspx page Pin
immu516-Mar-09 9:58
immu516-Mar-09 9:58 
AnswerRe: Conversion of html page to aspx page Pin
Christian Graus16-Mar-09 10:26
protectorChristian Graus16-Mar-09 10:26 
GeneralRe: Conversion of html page to aspx page Pin
immu516-Mar-09 10:45
immu516-Mar-09 10:45 
GeneralRe: Conversion of html page to aspx page Pin
Christian Graus16-Mar-09 12:34
protectorChristian Graus16-Mar-09 12:34 
GeneralRe: Conversion of html page to aspx page Pin
immu517-Mar-09 4:28
immu517-Mar-09 4:28 
AnswerREGEX Pin
David Mujica16-Mar-09 10:26
David Mujica16-Mar-09 10:26 
GeneralRe: REGEX Pin
immu516-Mar-09 10:44
immu516-Mar-09 10:44 
Question[Message Deleted] Pin
Richard Leighton16-Mar-09 5:10
Richard Leighton16-Mar-09 5:10 
AnswerRe: Frustrating! Datagrid - Get the information! Pin
led mike16-Mar-09 5:31
led mike16-Mar-09 5:31 
GeneralRe: Frustrating! Datagrid - Get the information! Pin
Richard Leighton16-Mar-09 7:09
Richard Leighton16-Mar-09 7:09 

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.