I need to override WebRequest to create a custom class to upload files using ftp protocol, since I have VS .Net 2003 and it doesn't support framework 2.0 which provides FtpWebRequest class. Does anyone have any idea how to do this? There's a link on microsoft website to create a pluggable ftp...
My Visual Studio .Net 2003 ties with .Net Framework 1.1 at installation. I can't use FtpWebRequest which needs at least framework 2.0. I went through upgrading studio by going to Add/Remove Programs, then clicking on Change/Remove studio to get to the studio setup window, then Repair/Reinstall...
I tried that. It can't find the imagebutton. I even used GetEnumerator to loop through all controls within datagrid and output the names of the controls it found to see what it found - all the controls it found were datatable.
Example:
Dim NestedGrid As New DataGrid
NestedGrid =...
I tried both ways
1. In MyBase_Load
Dim btnViewer As New ImageButton
btnViewer = FindControl("btnViewer")
AddHandler btnViewer.Click, AddressOf ViewReport
2. In repeater_ItemDataBound
Dim btnViewer As New ImageButton
btnViewer = E.Item.FindControl("btnViewer")...
I have a datagrid nested inside a repeater. Does anyone know how to catch an event on an imagebutton inside datagrid?
Example:
<asp:Repeater>
<ItemTemplate>
<asp:DataGrid>
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<asp:ImageButton>
Thanks.
I'm using Crystal Report 9. The report is grouped by exam date and then by doctor. I have running total (A) for each doctor to show how many exams they have done on each exam date. In the report footer, I want to show how many exams each doctor has done in the period specified in Record...
It doesn't have that problem if I open the report on another computer. I don't know if it has something to do with ActiveX. But if I generate a report on another application that has Crystal Report Viewer, the report also has strange characters, not ASCII.
Thanks.
Due to the time change last Sunday, I unchecked the setting for "Automatically adjust clock for daylight saving changes" on all computers at work. The reason we wanted to do this is that all computers would pull the correct time from the firewall rather than having me to change the time...
I forgot to mention that the application is data-driven. The data shown on the window is based on the date range the user picks. css can't do this, can it?
Thanks.
I have an image that when being moused over, it needs to show a little window which shows some data. For example, if the mouse is over the image of "Top 25", a window will pop up showing the top 25 physicians's names, ids, etc. If the mouse is over the image of "Top 50", the window will show...
I'd like to group data into week1, week2, week3, and week4 for each month. For example, if the report was processed on 2/5/07, the data should be in week1. If it was processed on 2/12/07, it should be in week2.
Does anyone know what formula or function would help me do this?
Thanks.
I need to create a webpage that allows users to download some files. I know how create a button, but I'm stuck from there. Once a button is clicked, the files need to be downloaded to the user's machine.
Can anyone show me how to do this?
Thanks.
JurkMonkey, that was a great idea. The reason I want to use Windows service is I have a loop to watch for any data on port 8001:
do{
numberOfBytesRead = myNetworkStream.Read(myReadBuffer, 0, myReadBuffer.Length);
}
while(myNetworkStream.DataAvailable);
This loop takes to much CPU...
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.