If you're trying to access it from a different computer, you need to specify the website name and be sure that either your computer or the server is set to resolve the website name.
http://websitename/helo1/Service.asmx...
User Profile
Collapse
-
shiznit770 replied to Help needed to create BLL class for storeprocedure which updates multiple tablesin ASP .NETLooks like you're trying to insert into the products table without a ProductID and you have the column set to not allow Nulls. You need to set the column to auto increment or specify a value for it if you're going to not allow Nulls.Leave a comment:
-
What do the option being selected and button being clicked do?Leave a comment:
-
This is probably what you want (in the rowdatabound event)
Using the c# equivalent ofcourse.Code:If e.Row.RowType = DataControlRowType.DataRow Then If e.Row.DataItem("Editflg") = "1" Then e.Row.RowState = DataControlRowState.Edit Else e.Row.RowState = DataControlRowState.Normal End If End IfLeave a comment:
-
Not sure if this is it, but you declared your variable of type TextBox when the control you're finding is a Label...Leave a comment:
-
-
It sounds like you just don't want to have to write the code out in ever page declaring your object. I would suggest creating a custom BasePage class that way you can simply declare the connection in one place and reference it from each of your pages.
Here's a place to startLeave a comment:
-
-
The error indicates that the repeater is attempting to read an index that is not present on the datasource.
Make your select statement in a query so that you can see the data it returns. Double check the spelling of your column names and the corresponding indexes used by the data repeater.Leave a comment:
No activity results to display
Show More
Leave a comment: