Archive
How to find control with in repeater on button click event
<asp:Repeater ID=”RptInfo” runat=”server”>
<ItemTemplate>
<asp:Panel ID=”pnlReadonly” runat=”server”>
….
</asp:Panel>
</ItemTemplate>
</asp:Repeater>
Code :
Protected Sub btnCancel_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCancel.Click
Dim pnlReadonly As Panel = DirectCast(RptSoccerInfo.Items(0).FindControl(“pnlReadonly”), Panel)
If (Not pnl Is Nothing) Then
‘ some code
End If
End Sub
Will add some more detail soon .
Unable to write to output file [FileName] .pdb: Unspecified error Visual Studio
“Unable to write to output file [FileName] .pdb: Unspecified error” for one of the projects.
I have cleaned the project solution , deleting references but that didn’t help
Figured out that there was a missing file in one of the projects. To know which file it is please follow the steps
[1] Close visual studio
[2] Reopen the solution (DON’T build)
[3] Check the Errors List
You should see
Error 1 Unable to open module file [FileName].vb : The system cannot find the file specified. [FileName] [Project]
Hope its helps!
Visual Studio – Database Project Not Loading
Have you ever created a Database project and after some time you are not able to load it in the Visual Studio? Probably you might be getting following error:
An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 – Error Locating Server/Instance Specified)
The database project requires an active database connection to load at design time. Probably it uses that to compile/verify scripts. The problem here is Visual Studio is not able to connect to any such instance. Following are few solutions (these worked for me)
- Make sure the instance to which you want to connect is running and allows remote connections.
- After performing step 1, if it is still not loading then you may need to start the SQL Browser Service. Make sure it’s running.
- If the problem is still there, it has to be fixed from Visual Studio itself. Actually database project do not store to which instance it can connect. It’s a Visual Studio setting.In VS2008 go to Tool > Options > Database Tools > Design-time Validation Database > Connection Options. Specify your instance name here like “\SQLEXPRESS”
Also If you upgraded your database project from 2005 to 2008 and if you try to open the 2008 database project solution file then you may get the following error:
Coluld not load file or assembly ‘System.Data.SqlServerCe, Version=3.5.1.0, Culture=neutral, PublicKeyToken = 89845dcd8080cc91’ or one of its dependencies. The system cannot find the file specified.
To resolve this you need to install SQL Server CE 3.5 SP1 from here: http://www.microsoft.com/downloads/details.aspx?FamilyID=dc614aee-7e1c-4881-9c32-3a6ce53384d9&displaylang=en
Hope it helps !
Comments