Click here to Skip to main content
15,914,594 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Access Network Machine Pin
Abhijit Jana30-Jun-08 22:54
professionalAbhijit Jana30-Jun-08 22:54 
QuestionImages as Buttons for asp:button and asp:Login Pin
gottimukkala30-Jun-08 21:34
gottimukkala30-Jun-08 21:34 
AnswerRe: Images as Buttons for asp:button and asp:Login [modified] Pin
eyeseetee30-Jun-08 21:41
eyeseetee30-Jun-08 21:41 
AnswerRe: Images as Buttons for asp:button and asp:Login Pin
Sherin Iranimose30-Jun-08 22:05
Sherin Iranimose30-Jun-08 22:05 
QuestionWarning 'A null reference exception' Pin
BalasubramanianK30-Jun-08 21:28
BalasubramanianK30-Jun-08 21:28 
AnswerRe: Warning 'A null reference exception' Pin
eyeseetee30-Jun-08 21:34
eyeseetee30-Jun-08 21:34 
AnswerRe: Warning 'A null reference exception' Pin
Sherin Iranimose30-Jun-08 21:55
Sherin Iranimose30-Jun-08 21:55 
AnswerRe: Warning 'A null reference exception' Pin
Gayani Devapriya30-Jun-08 22:55
Gayani Devapriya30-Jun-08 22:55 
Hi,

When the SqlDataReader object is null, there is nothing for it to close. So, you will get this warning. What you could do is add this code to your finally block.
finally
{
if (sqlDr1 != null)
{
sqlDr1.Close();
}
}

Thx,
Gayani
AnswerRe: Warning 'A null reference exception' Pin
Expert Coming30-Jun-08 23:15
Expert Coming30-Jun-08 23:15 
QuestionImages as Buttons for <asp:button and="" xmlns:asp="#unknown"><asp:login></asp:login></asp:button> Pin
gottimukkala30-Jun-08 21:06
gottimukkala30-Jun-08 21:06 
AnswerRe: Images as Buttons for Pin
N a v a n e e t h30-Jun-08 21:10
N a v a n e e t h30-Jun-08 21:10 
QuestionHide Image saveAs and other properties on mouse over Pin
Abhijit Jana30-Jun-08 20:38
professionalAbhijit Jana30-Jun-08 20:38 
AnswerRe: Hide Image saveAs and other properties on mouse over Pin
N a v a n e e t h30-Jun-08 20:57
N a v a n e e t h30-Jun-08 20:57 
GeneralRe: Hide Image saveAs and other properties on mouse over Pin
Abhijit Jana30-Jun-08 21:09
professionalAbhijit Jana30-Jun-08 21:09 
GeneralRe: Hide Image saveAs and other properties on mouse over Pin
N a v a n e e t h30-Jun-08 21:12
N a v a n e e t h30-Jun-08 21:12 
GeneralRe: Hide Image saveAs and other properties on mouse over Pin
Abhijit Jana30-Jun-08 21:18
professionalAbhijit Jana30-Jun-08 21:18 
GeneralRe: Hide Image saveAs and other properties on mouse over Pin
N a v a n e e t h30-Jun-08 21:23
N a v a n e e t h30-Jun-08 21:23 
GeneralRe: Hide Image saveAs and other properties on mouse over Pin
Abhijit Jana30-Jun-08 21:30
professionalAbhijit Jana30-Jun-08 21:30 
GeneralRe: Hide Image saveAs and other properties on mouse over Pin
eyeseetee30-Jun-08 21:45
eyeseetee30-Jun-08 21:45 
GeneralRe: Hide Image saveAs and other properties on mouse over Pin
N a v a n e e t h1-Jul-08 1:04
N a v a n e e t h1-Jul-08 1:04 
AnswerRe: Hide Image saveAs and other properties on mouse over Pin
Christian Graus30-Jun-08 22:02
protectorChristian Graus30-Jun-08 22:02 
Questionhow save text box in run time Pin
Rinki Mukheraji30-Jun-08 20:36
Rinki Mukheraji30-Jun-08 20:36 
AnswerRe: how save text box in run time Pin
N a v a n e e t h30-Jun-08 20:51
N a v a n e e t h30-Jun-08 20:51 
AnswerRe: how save text box in run time Pin
Abhijit Jana30-Jun-08 21:13
professionalAbhijit Jana30-Jun-08 21:13 
GeneralRe: how save text box in run time Pin
Rinki Mukheraji30-Jun-08 21:23
Rinki Mukheraji30-Jun-08 21:23 

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.