Click here to Skip to main content
15,891,672 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionerror occur when i new (Dim _mUccp As New UCCPLib.UccPlatform()) this dll Pin
Piyush Vardhan Singh20-Sep-07 20:42
Piyush Vardhan Singh20-Sep-07 20:42 
QuestionHow to avoid Timeout Error? Pin
pubududilena20-Sep-07 20:30
pubududilena20-Sep-07 20:30 
AnswerRe: How to avoid Timeout Error? [modified] Pin
Sandeep Akhare20-Sep-07 20:43
Sandeep Akhare20-Sep-07 20:43 
AnswerRe: How to avoid Timeout Error? Pin
N a v a n e e t h20-Sep-07 20:44
N a v a n e e t h20-Sep-07 20:44 
Questionlistbox validation(Urgent) Pin
Milind Panchal20-Sep-07 20:20
Milind Panchal20-Sep-07 20:20 
AnswerRe: listbox validation(Urgent) Pin
varshavmane20-Sep-07 20:23
varshavmane20-Sep-07 20:23 
AnswerRe: listbox validation(Urgent) Pin
Imran Khan Pathan20-Sep-07 20:50
Imran Khan Pathan20-Sep-07 20:50 
AnswerRe: listbox validation(Urgent) Pin
rashidpervaiz0821-Sep-07 21:51
rashidpervaiz0821-Sep-07 21:51 
javascript function:

function fun(id)
{
var obj = document.getElementById(id);
var cnt = obj.options.length;
var checked = 0;
for (var i = 0; i < cnt; i++)
{
if (obj.options[i].selected)
checked++;
}

if (checked > 5)
{
alert('more than 5 selection');
obj.focus();
}
}
###################################
Server side:

ListBox1.Attributes.Add("onblur", "fun('" + ListBox1.ClientID+ "');");
QuestionWater Mark in TextBox Control Pin
bhattiprolu20-Sep-07 20:13
bhattiprolu20-Sep-07 20:13 
AnswerRe: Water Mark in TextBox Control Pin
varshavmane20-Sep-07 20:14
varshavmane20-Sep-07 20:14 
GeneralRe: Water Mark in TextBox Control Pin
bhattiprolu20-Sep-07 20:42
bhattiprolu20-Sep-07 20:42 
GeneralRe: Water Mark in TextBox Control Pin
Sandeep Akhare20-Sep-07 20:48
Sandeep Akhare20-Sep-07 20:48 
GeneralRe: Water Mark in TextBox Control Pin
bhattiprolu20-Sep-07 21:31
bhattiprolu20-Sep-07 21:31 
GeneralRe: Water Mark in TextBox Control Pin
Sandeep Akhare20-Sep-07 22:41
Sandeep Akhare20-Sep-07 22:41 
GeneralRe: Water Mark in TextBox Control Pin
bhattiprolu20-Sep-07 22:54
bhattiprolu20-Sep-07 22:54 
AnswerRe: Water Mark in TextBox Control Pin
Imran Khan Pathan20-Sep-07 20:56
Imran Khan Pathan20-Sep-07 20:56 
GeneralRe: Water Mark in TextBox Control Pin
bhattiprolu20-Sep-07 21:06
bhattiprolu20-Sep-07 21:06 
GeneralRe: Water Mark in TextBox Control Pin
Imran Khan Pathan20-Sep-07 21:11
Imran Khan Pathan20-Sep-07 21:11 
GeneralRe: Water Mark in TextBox Control Pin
bhattiprolu20-Sep-07 21:17
bhattiprolu20-Sep-07 21:17 
GeneralRe: Water Mark in TextBox Control Pin
bhattiprolu20-Sep-07 22:15
bhattiprolu20-Sep-07 22:15 
QuestionHow to do this?? Pin
varshavmane20-Sep-07 19:31
varshavmane20-Sep-07 19:31 
AnswerRe: How to do this?? Pin
Christian Graus20-Sep-07 19:50
protectorChristian Graus20-Sep-07 19:50 
GeneralRe: How to do this?? Pin
varshavmane20-Sep-07 19:55
varshavmane20-Sep-07 19:55 
GeneralRe: How to do this?? Pin
Christian Graus20-Sep-07 20:01
protectorChristian Graus20-Sep-07 20:01 
GeneralRe: How to do this?? Pin
varshavmane20-Sep-07 20:06
varshavmane20-Sep-07 20:06 

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.