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

ASP.NET

 
QuestionHidden Fields Pin
gauthee15-Jul-07 22:41
gauthee15-Jul-07 22:41 
AnswerRe: Hidden Fields Pin
Guffa15-Jul-07 22:50
Guffa15-Jul-07 22:50 
Questionhow to get value from hash table Pin
Piyush Vardhan Singh15-Jul-07 22:16
Piyush Vardhan Singh15-Jul-07 22:16 
AnswerRe: how to get value from hash table Pin
Mubashir Javaid15-Jul-07 22:44
Mubashir Javaid15-Jul-07 22:44 
GeneralRe: how to get value from hash table Pin
Piyush Vardhan Singh15-Jul-07 23:08
Piyush Vardhan Singh15-Jul-07 23:08 
GeneralRe: how to get value from hash table Pin
Parwej Ahamad15-Jul-07 23:41
professionalParwej Ahamad15-Jul-07 23:41 
GeneralRe: how to get value from hash table Pin
Mubashir Javaid15-Jul-07 23:43
Mubashir Javaid15-Jul-07 23:43 
AnswerRe: how to get value from hash table Pin
-Dr_X-18-Jul-07 10:11
-Dr_X-18-Jul-07 10:11 
This helpful to extract the whole list of key & values when debugging:
Public Shadows Function ToString(ByVal hashTable As Hashtable) As String
  Dim s As String = String.Empty
  Dim enumerator As IDictionaryEnumerator = hashTable.GetEnumerator()

  While (enumerator.MoveNext())
    s += enumerator.Key & ": " & enumerator.Value & ControlChars.NewLine
  End While
  Return s
End Function


Michael

I firmly believe that any man's finest hour, the greatest fulfillment of all that he holds dear, is that moment when he has worked his heart out in a good cause and lies exhausted on the field of battle - victorious.
Vince Lombardi (1913-1970)

QuestionHelp in Response.Write statement Pin
Prakash_Mishra15-Jul-07 22:12
Prakash_Mishra15-Jul-07 22:12 
AnswerRe: Help in Response.Write statement Pin
_AK_15-Jul-07 22:42
_AK_15-Jul-07 22:42 
GeneralRe: Help in Response.Write statement Pin
Prakash_Mishra15-Jul-07 23:24
Prakash_Mishra15-Jul-07 23:24 
GeneralRe: Help in Response.Write statement Pin
_AK_15-Jul-07 23:33
_AK_15-Jul-07 23:33 
GeneralRe: Help in Response.Write statement Pin
Prakash_Mishra16-Jul-07 0:27
Prakash_Mishra16-Jul-07 0:27 
GeneralRe: Help in Response.Write statement Pin
_AK_16-Jul-07 0:44
_AK_16-Jul-07 0:44 
GeneralRe: Help in Response.Write statement Pin
Prakash_Mishra16-Jul-07 0:52
Prakash_Mishra16-Jul-07 0:52 
GeneralRe: Help in Response.Write statement Pin
_AK_16-Jul-07 1:03
_AK_16-Jul-07 1:03 
GeneralRe: Help in Response.Write statement Pin
Prakash_Mishra16-Jul-07 1:05
Prakash_Mishra16-Jul-07 1:05 
GeneralRe: Help in Response.Write statement Pin
_AK_16-Jul-07 1:18
_AK_16-Jul-07 1:18 
GeneralRe: Help in Response.Write statement Pin
Prakash_Mishra16-Jul-07 1:30
Prakash_Mishra16-Jul-07 1:30 
GeneralRe: Help in Response.Write statement Pin
_AK_16-Jul-07 2:22
_AK_16-Jul-07 2:22 
GeneralRe: Help in Response.Write statement Pin
Prakash_Mishra16-Jul-07 2:58
Prakash_Mishra16-Jul-07 2:58 
GeneralRe: Help in Response.Write statement Pin
_AK_16-Jul-07 3:02
_AK_16-Jul-07 3:02 
QuestionHow to Redirect from one URL to another??? Pin
bijeshputhalath15-Jul-07 21:59
bijeshputhalath15-Jul-07 21:59 
AnswerRe: How to Redirect from one URL to another??? Pin
_AK_15-Jul-07 22:00
_AK_15-Jul-07 22:00 
GeneralRe: How to Redirect from one URL to another??? Pin
bijeshputhalath16-Jul-07 0:18
bijeshputhalath16-Jul-07 0:18 

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.