ActiveX Control (written in .Net) and ASP .NET Problem
<OBJECT id="MyDriver" classid="MyInterface.dll#MyInterface.MyCall" name="MyDriver" VIEWASTEXT></OBJECT>
The application runs fine on my test web server, but I when I move it to production, I get the fusionBindError.
I have done the...
I'm trying to use Crystal Reports & ASP .net to do a simple report using data on an AS400. The report has 3 parameters. I am using the IBM OBBC driver. In the Add Command feature of crystal, when I hard code the values it works, but when I setup parmeters, the query fails and I get the message...
I am having a problem finding the child datagrid from the Parent update command. I would like to loop through the values to do some validation.
Public Sub DataGrid1_UpdateCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles...
I am trying to create an interim single sign on solution and I would like to automatically fill in the username and password on fomr forms. I need to simulate the login process for the user.
I looked at www.webzinc.net, which would work, but is more than what I need right now.
Is there anyway...
I would use a case statement inside the SQL sp
SELECT
Firstname,
LastName,
CASE IsActive
WHEN '0' THEN 'No'
WHEN '1' THEN 'Yes'
END
FROM UserInfo
Regards,
NatGreen
Since your table is fully generated through code you will need re-add the rows after each postback otherwise you will only have the current row.
Dynamic Web Controls, Postbacks, and View State :
http://aspnet.4guysfromrolla.com/articles/092904-1.aspx
what do you mean by "All of the other asp.net controls maintain state, why doesn't the user control?" are the other controls added dynamically also to tblDetails or just the user control?
It seems as if the problem may be with how you add the user controls to the page, not the user controls...
The probelm may be with your session value. I would put in a break point within your routine to check the value of i everytime you are attempting to add a control, it may be that you are adding the same control multiple times.
Try this:
Private Sub AddESOItem()
Dim tCell As New...
nlkflynn777,
There are many ways to simply generate and send emails from .NET. If you are wanting to stay with using the MSMapi32.ocx control, here is a an article that gives an example.
http://www.codeproject.com/dotnet/activeXnet.asp?msg=764767
Hope this helps,
NatGreen
You could use a template column or the hyperlink column:
1. <asp:TemplateColumn>
<ItemTemplate>
<asp:HyperLink runat="server" Text="View" NavigateUrl='<%# "tiViewTransLst.aspx?OrderID=" & Container.DataItem("OrderID") & "&OrderName=" &...
It depends on how you set up your report.
First I create the report from a stored proc in SQL and save it w/out the data.
Here is a snipit of code I use to run it from .NET:
' To be able to get the values in web.config
Dim MachineType As String =...
Try putting your sort expression in your columns:
i.e. <asp:BoundColumn DataField="ext_file_name" SortExpression="ext_file_name" HeaderText="File Name">
If you can do a view source on the page and you see the control in the html then perhaps your ISAPI extensions aren't set up correctly. To fix them, you need to run "aspnet_regiis.exe -i" at the command prompt.
more info can be found here...
Dataset and Crystal 9
I am creating a web application written in ASP.NET and would like to include reporting capability using crystal 9. I would like to use my current data access layer and bind my reports to the dataset that is returned.
Does anyone have an example or know of a good article...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.