Click here to Skip to main content
15,912,400 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: dynamically Enabling or disabling some item in menu Pin
abulhassan_shock22-Dec-06 0:27
abulhassan_shock22-Dec-06 0:27 
AnswerRe: dynamically Enabling or disabling some item in menu Pin
Manickarj22-Dec-06 1:44
Manickarj22-Dec-06 1:44 
GeneralRe: dynamically Enabling or disabling some item in menu Pin
mohd imran abdul aziz22-Dec-06 22:37
mohd imran abdul aziz22-Dec-06 22:37 
AnswerRe: dynamically Enabling or disabling some item in menu Pin
ednrgc22-Dec-06 3:59
ednrgc22-Dec-06 3:59 
Questiondoing bubble event Pin
jayakumarb21-Dec-06 22:03
jayakumarb21-Dec-06 22:03 
Questionhow to get the focus on window or browser Pin
jayakumarb21-Dec-06 21:53
jayakumarb21-Dec-06 21:53 
AnswerRe: how to get the focus on window or browser Pin
Haissam22-Dec-06 5:04
Haissam22-Dec-06 5:04 
AnswerRe: how to get the focus on window or browser Pin
postmaster@programmingknowledge.com22-Dec-06 5:26
postmaster@programmingknowledge.com22-Dec-06 5:26 
in your form

RegisterStartupScript("setFocus", Utilities.SetFocus(txtName))


in global

Public Function SetFocus(ByVal FocusControl As Control) As String
'Setting focus to supplied control
Dim Script As New System.Text.StringBuilder
Dim ClientID As String = FocusControl.ClientID

'Building java script
With Script
.Append("")
.Append("document.getElementById('")
.Append(ClientID)
.Append("').focus();")
.Append("")
End With

Return Script.ToString()
End Function
================================================
http://www.programmingknowledge.com/[^]
================================================
QuestionAsp.net Pin
venkatesan4521-Dec-06 20:38
venkatesan4521-Dec-06 20:38 
AnswerRe: Asp.net Pin
Deepak the Cool21-Dec-06 22:09
Deepak the Cool21-Dec-06 22:09 
AnswerRe: Asp.net Pin
rama charan22-Dec-06 0:32
rama charan22-Dec-06 0:32 
QuestionNeed Atlas Controls Pin
crazy_mads21-Dec-06 20:25
crazy_mads21-Dec-06 20:25 
AnswerRe: Need Atlas Controls Pin
ednrgc22-Dec-06 4:01
ednrgc22-Dec-06 4:01 
AnswerRe: Need Atlas Controls Pin
prolibertine22-Dec-06 4:03
prolibertine22-Dec-06 4:03 
Questionproblem with opening the file Pin
King Shez21-Dec-06 20:14
King Shez21-Dec-06 20:14 
AnswerRe: problem with opening the file Pin
King Shez21-Dec-06 20:15
King Shez21-Dec-06 20:15 
GeneralRe: problem with opening the file Pin
ednrgc22-Dec-06 4:03
ednrgc22-Dec-06 4:03 
AnswerRe: problem with opening the file Pin
Haissam22-Dec-06 5:07
Haissam22-Dec-06 5:07 
QuestionASP.NET page is laking long time to load in browser Pin
Arindam Tewary21-Dec-06 19:57
professionalArindam Tewary21-Dec-06 19:57 
AnswerRe: ASP.NET page is laking long time to load in browser Pin
ednrgc22-Dec-06 4:05
ednrgc22-Dec-06 4:05 
GeneralRe: ASP.NET page is laking long time to load in browser Pin
Arindam Tewary22-Dec-06 4:26
professionalArindam Tewary22-Dec-06 4:26 
GeneralRe: ASP.NET page is laking long time to load in browser Pin
ednrgc22-Dec-06 4:29
ednrgc22-Dec-06 4:29 
GeneralRe: ASP.NET page is laking long time to load in browser Pin
ednrgc22-Dec-06 4:44
ednrgc22-Dec-06 4:44 
Questionsms sending Pin
yuvachandra21-Dec-06 19:47
yuvachandra21-Dec-06 19:47 
AnswerRe: sms sending Pin
ednrgc22-Dec-06 4:06
ednrgc22-Dec-06 4: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.