ASP.NET 2.0 error

H

HW

Hi group

total newbie..

Installed VS 2005 and ASP.net 2.0 - and downloaded the starter kit
Timetracker fraom ASP.NET

I have change the SQL Express db to a SQL standard editon - and I connect
successfully to the database but getting the error

Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'

if I google it - the result are regarding membership...

any thoughts/solutions so I can get it to work properly ?


tia
 
B

Brendan Green

Did you run the aspnet_regsql.exe tool, located in
c:\windows\Microsoft.NET\Framework\<version 2>, against the SQL Standard
Edition database?
 
H

HW

Brendan Green said:
Did you run the aspnet_regsql.exe tool, located in
c:\windows\Microsoft.NET\Framework\<version 2>, against the SQL Standard
Edition database?

Hi Brendan

thx for your reply..;0)

I just did aspnet_reg and pointed it at the timetracker db....seems to have
done something... but now getting an inner exeption and content from this
are copied below - do you have any ideas regaarding this ?

System.Reflection.TargetInvocationException was unhandled by user code
Message="Exception has been thrown by the target of an invocation."
Source="mscorlib"
StackTrace:
at System.RuntimeMethodHandle._InvokeMethodFast(Object target,
Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes,
RuntimeTypeHandle typeOwner)
at System.RuntimeMethodHandle.InvokeMethodFast(Object target,
Object[] arguments, Signature sig, MethodAttributes methodAttributes,
RuntimeTypeHandle typeOwner)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj,
BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo
culture, Boolean skipVisibilityChecks)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj,
BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo
culture)
at
System.Web.UI.WebControls.ObjectDataSourceView.InvokeMethod(ObjectDataSourceMethod
method, Boolean disposeInstance, Object& instance)
at
System.Web.UI.WebControls.ObjectDataSourceView.ExecuteSelect(DataSourceSelectArguments
arguments)
at System.Web.UI.WebControls.ListControl.OnDataBinding(EventArgs e)
at System.Web.UI.WebControls.ListControl.PerformSelect()
at System.Web.UI.WebControls.BaseDataBoundControl.DataBind()
at TimeEntry_aspx.Page_Load(Object sender, EventArgs e) in
c:\Inetpub\wwwroot\TimeTracker\TimeTracker\TimeEntry.aspx.cs:line 40
at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp,
Object o, Object t, EventArgs e)
at System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object
sender, EventArgs e)
at System.Web.UI.Control.OnLoad(EventArgs e)
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top