Click here to Skip to main content
15,920,896 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralOverride FormAuthentication.LoginURL Pin
econner23-Feb-08 13:05
econner23-Feb-08 13:05 
QuestionHow to retrieve exception code from code behind when call oracle stored procedure Pin
Kennie_n200023-Feb-08 8:56
Kennie_n200023-Feb-08 8:56 
AnswerRe: How to retrieve exception code from code behind when call oracle stored procedure Pin
N a v a n e e t h23-Feb-08 16:34
N a v a n e e t h23-Feb-08 16:34 
GeneralRe: How to retrieve exception code from code behind when call oracle stored procedure Pin
Kennie_n200023-Feb-08 21:07
Kennie_n200023-Feb-08 21:07 
GeneralAjax on DataList Pin
Brady Kelly23-Feb-08 0:52
Brady Kelly23-Feb-08 0:52 
GeneralPerformance of an application Pin
Kissy1623-Feb-08 0:15
Kissy1623-Feb-08 0:15 
GeneralRe: Performance of an application Pin
Sandeep Akhare23-Feb-08 1:42
Sandeep Akhare23-Feb-08 1:42 
GeneralRe: Performance of an application Pin
N a v a n e e t h23-Feb-08 7:54
N a v a n e e t h23-Feb-08 7:54 
Kissy16 wrote:
if
isdbnull(txt.text) or txt.text=""
msgbox("blank")
elseif....
end if


This is incorrect. In ASP.NET you can't display a message box as you do in windows applications. IsDbNull checks whether the value belongs to System.DbNull type. So you can't check the text box string in such a way.

When you use validators, always check the Page.IsValid property to make sure all validators are validated successfully.
If(Page.IsValid) Then
'Do your stuff
End If


Kissy16 wrote:
And also "autopostback=true" property of some controls makes the server hits more.So at the user end appln becomes slow.What to do for this??But i have to set that property as per appln concern.


It will hit in the browser. You can't avoid that. But if you need to avoid page getting refreshed, use AJAX. But AJAX request also hits server. Also I don't think that it will be a big performance problem.

All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia

My Website | Ask smart questions

QuestionHi guys. I want to know about how to generate a waiting or loading page using asp.net? Pin
G Nathan22-Feb-08 22:58
G Nathan22-Feb-08 22:58 
GeneralRe: Hi guys. I want to know about how to generate a waiting or loading page using asp.net? Pin
Abhijit Jana23-Feb-08 1:58
professionalAbhijit Jana23-Feb-08 1:58 
GeneralRe: Hi guys. I want to know about how to generate a waiting or loading page using asp.net? Pin
G Nathan23-Feb-08 2:14
G Nathan23-Feb-08 2:14 
GeneralRe: Hi guys. I want to know about how to generate a waiting or loading page using asp.net? Pin
Abhijit Jana23-Feb-08 2:21
professionalAbhijit Jana23-Feb-08 2:21 
QuestionHow to send mail through SQL Server Triggers Pin
renangi22-Feb-08 22:11
renangi22-Feb-08 22:11 
AnswerRe: How to send mail through SQL Server Triggers Pin
Hesham Amin22-Feb-08 22:33
Hesham Amin22-Feb-08 22:33 
GeneralRe: How to send mail through SQL Server Triggers Pin
YingXiuMei24-Feb-08 0:01
YingXiuMei24-Feb-08 0:01 
GeneralRe: How to send mail through SQL Server Triggers Pin
Hesham Amin25-Feb-08 21:05
Hesham Amin25-Feb-08 21:05 
GeneralCascadingDropDown Control Pin
~V~22-Feb-08 21:15
~V~22-Feb-08 21:15 
GeneralRe: CascadingDropDown Control Pin
renangi22-Feb-08 22:09
renangi22-Feb-08 22:09 
QuestionHow chane Font Name Pin
Rinki Mukheraji22-Feb-08 20:52
Rinki Mukheraji22-Feb-08 20:52 
AnswerRe: How chane Font Name Pin
Abhijit Jana23-Feb-08 1:32
professionalAbhijit Jana23-Feb-08 1:32 
AnswerRe: How chane Font Name Pin
Mitesh Darji24-Feb-08 20:19
Mitesh Darji24-Feb-08 20:19 
GeneralWindows to web code Pin
Member 387988122-Feb-08 19:50
Member 387988122-Feb-08 19:50 
GeneralRe: Windows to web code Pin
Christian Graus22-Feb-08 20:17
protectorChristian Graus22-Feb-08 20:17 
Generalauto fill Pin
Member 387988122-Feb-08 19:02
Member 387988122-Feb-08 19:02 
GeneralRe: auto fill Pin
Christian Graus22-Feb-08 19:05
protectorChristian Graus22-Feb-08 19:05 

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.