Newbie question, please....

  • Thread starter Thread starter Stuff
  • Start date Start date
S

Stuff

Hi,

(Running XP Pro, IIS 5.1, version 1 of VS Studio and Framework 1.0)

With the simplest of datagrid generated web control, doing a CTRL+F5 results
in no errors, and when IE comes up, the control is not visible. When
looking in IE's VIEW->SOURCE, the original source code is there...the asp
tags have not been stripped. It is not compiling!?

What am I doing wrong here?
Thank you for your help!!!!!
 
Have you bound the datagrid to a data source?

grdYourGrid.Datasource = dsSource
grdYourGrid.Databind()

HTH
-Rich
 
run
aspnet_regiis -i

and see if that helps (search for the file if you dont know where its
located) mine was in the path C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322

that will install asp.net on your iis server, if it still doesnt work do
aspnet_regiis -c
 
Back
Top