Click here to Skip to main content
15,915,336 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionvalidation summary in javascript Pin
VaibhavTiparadi11-Jan-07 20:44
VaibhavTiparadi11-Jan-07 20:44 
AnswerRe: validation summary in javascript Pin
Sam's Den11-Jan-07 22:46
Sam's Den11-Jan-07 22:46 
Questiondll error Pin
Sebastian T Xavier11-Jan-07 20:29
Sebastian T Xavier11-Jan-07 20:29 
AnswerRe: dll error Pin
Sam's Den11-Jan-07 22:56
Sam's Den11-Jan-07 22:56 
Questionhow to show a message box in asp.net Pin
Rmesh11-Jan-07 20:28
Rmesh11-Jan-07 20:28 
AnswerRe: how to show a message box in asp.net Pin
_AK_11-Jan-07 20:49
_AK_11-Jan-07 20:49 
AnswerRe: how to show a message box in asp.net Pin
mohd imran abdul aziz12-Jan-07 0:37
mohd imran abdul aziz12-Jan-07 0:37 
AnswerRe: how to show a message box in asp.net Pin
tonsum12-Jan-07 1:30
tonsum12-Jan-07 1:30 
Write the following code in a class file(.vb or .cs) and the from the application call classname.CreateMessageAlert(Me,"Please Login","clientScript")

Public Class ClsMsgBox
Public Shared Sub CreateMessageAlert(ByVal aspxPage As
System.Web.UI.Page, ByVal strMessage As String, ByVal strKey As String)
Dim strScript As String = ""
strScript &= "alert(""" & strMessage & """);"
strScript &= ""
If (Not aspxPage.IsStartupScriptRegistered(strKey)) Then
aspxPage.RegisterStartupScript(strKey, strScript)
End If
End Sub
End Class

Happy Programming!!!

Tonmoy Roy
QuestionRunning IE in the background Pin
Rajiya11-Jan-07 20:23
Rajiya11-Jan-07 20:23 
AnswerRe: Running IE in the background Pin
Guffa11-Jan-07 20:55
Guffa11-Jan-07 20:55 
AnswerRe: Running IE in the background Pin
indian14311-Jan-07 22:23
indian14311-Jan-07 22:23 
GeneralRe: Running IE in the background Pin
Rajiya11-Jan-07 22:43
Rajiya11-Jan-07 22:43 
GeneralRe: Running IE in the background Pin
indian14311-Jan-07 23:04
indian14311-Jan-07 23:04 
GeneralRe: Running IE in the background Pin
indian14312-Jan-07 0:27
indian14312-Jan-07 0:27 
GeneralRe: Running IE in the background Pin
Rajiya14-Jan-07 18:11
Rajiya14-Jan-07 18:11 
QuestionEditable datagrid Pin
nclauder11-Jan-07 20:06
nclauder11-Jan-07 20:06 
AnswerRe: Editable datagrid Pin
_AK_11-Jan-07 20:54
_AK_11-Jan-07 20:54 
GeneralRe: Editable datagrid Pin
nclauder11-Jan-07 21:03
nclauder11-Jan-07 21:03 
GeneralRe: Editable datagrid Pin
_AK_11-Jan-07 21:43
_AK_11-Jan-07 21:43 
QuestionRequired Help for reuiredfieldvalidator Pin
mohd imran abdul aziz11-Jan-07 19:53
mohd imran abdul aziz11-Jan-07 19:53 
AnswerRe: Required Help for reuiredfieldvalidator Pin
varshavmane11-Jan-07 20:01
varshavmane11-Jan-07 20:01 
AnswerRe: Required Help for reuiredfieldvalidator Pin
sunilkr11-Jan-07 22:34
sunilkr11-Jan-07 22:34 
Questionhow to check whether all check boxes are selected or not Pin
Rmesh11-Jan-07 19:26
Rmesh11-Jan-07 19:26 
AnswerRe: how to check whether all check boxes are selected or not Pin
varshavmane11-Jan-07 20:17
varshavmane11-Jan-07 20:17 
AnswerRe: how to check whether all check boxes are selected or not Pin
sunilkr11-Jan-07 22:44
sunilkr11-Jan-07 22:44 

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.