ASP.Net Server objects and properties

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

The issues is.

while developing an asp.net page, it could not diplay the server-object properties automatically.
e.g:
server.createobjec
response.writ
request.form, etc.

now i am typing everything manually...Do I need to change any settings to display the object-properties automatically when I type "server." ? pls help.
 
Hi,

by design When you work with inline code in an .aspx page, IntelliSense
is not available for server-side code.

IntelliSense works fine in code behind pages.

Is that your case ?

Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377


*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
 
there is no intellisence when using just the .aspx page.

if you use codebehind you get intellisence

Meya said:
Hello,

The issues is..

while developing an asp.net page, it could not diplay the server-object properties automatically..
e.g:
server.createobject
response.write
request.form, etc..

now i am typing everything manually...Do I need to change any settings to
display the object-properties automatically when I type "server." ? pls
help..
 
Back
Top