Couple of questions:
1) Is there a good site that can help me create an asp.net page to upload files to an FTP server
2) I need to be able to have somebody upload an image to me, then will want to convert it to jpg, and resize the image. Any sites you could direct me to for this?
3) K, last but not least, I have a search that pulls data from an SQL Query and sticks the results in a datagrid. I have set the code to change the page to be:
When I click "next page" it clears the datagrid, and when I click on the "search" button again it will show the next page.
One last thing, I have two radio buttons on another page that I want it to swap some text when I switch the two. But it has no effect when I switch the radio buttons.
Here is the code:
I am using Visual Studio .Net 2003, with VB.NET Source.
any help would be GREATLY appreciated
1) Is there a good site that can help me create an asp.net page to upload files to an FTP server
2) I need to be able to have somebody upload an image to me, then will want to convert it to jpg, and resize the image. Any sites you could direct me to for this?
3) K, last but not least, I have a search that pulls data from an SQL Query and sticks the results in a datagrid. I have set the code to change the page to be:
Private Sub MyDataGrid_PageIndexChanged(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridPageChangedEventArgs) Handles MyDataGrid.PageIndexChanged
MyDataGrid.CurrentPageIndex = e.NewPageIndex
MyDataGrid.DataBind()
End Sub
When I click "next page" it clears the datagrid, and when I click on the "search" button again it will show the next page.
One last thing, I have two radio buttons on another page that I want it to swap some text when I switch the two. But it has no effect when I switch the radio buttons.
Here is the code:
Private Sub Radio2_Radio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Radio2_Radio.CheckedChanged
TestA_Checkbox.Visible = True
TestB_Checkbox.Text = "Some new text"
End Sub
I am using Visual Studio .Net 2003, with VB.NET Source.
any help would be GREATLY appreciated