Hello,
I am trying to find a way to use a single list as a datasource for two calendars. The calendars are on separate publishing sites. After searching for many hours there does not seem to be an easy way to do this. Does anyone have any experience on how this might be accomplished? Thank you...
Thanks for the quick reply. Here is a little more background.
I am getting a build error:
Databinding expressions are only supported on object that have a DataBinding event. HyperLinkField does not have a DataBinding event.
When I hard-code the DataNavigateUrlFormatString it works fine...
Could someone please help me understand what I am doing wrong. I have tried endlessly trying to get this to work.
All I get is errors.
Thank you.
Here is what I want to do:
I have a gridview with a hyperlink field. I want to set the DataNavigateUrlFormatString with a function call while...
I don't work much in ASP and I can't believe how difficult this has become. I have a gridview where some columns have lengthy text and the overall row height adjusted itself to show all the text. I want to scale down the row height to show only some of the text. None of the gridview settings...
Your right, some code would help.
When dropdownlist onSelectedIndexChanged event fires, I would like to add Test123 to
the ProductDescription column while staying in edit mode.
I do not know how to do this in javascript and am looking for some assistance. Thanks
Here are my datagrid columns...
Hi,
Haven't had much luck in asp forum so I'll try here.
I've been struggling with this and could really use some help.
I have a datagrid with an edit command. When I open up a row in edit mode I would like to set some text in several text box columns, but only after a selection is made in a...
Hello,
While in edit mode,I want to add some text to a textbox column in a datagrid when the selected text of a dropdownlist column changes. Thank you in advance to anyone who can help.
Here is the sub that is called from the dropdownlist...
Sub ProductIDChanged(sender As Object, e As...
This is what finally worked for me. Setting the WorkingDirectory was the key. Thanks for all of your help, I appreciate it.
Dim p As New Process
p.StartInfo.WorkingDirectory = "C:\BatTest"
p.StartInfo.FileName = "c:\BatTest\MyBatchFile.bat"
p.Start()
p.WaitForExit()
p.Close()
Not quite what you were looking for, but close. Try something like this...
'attach to the mouse up event
'this will highlight an entire row,
'regardless of where in the row the user clicked
Dim pt = New Point(e.X, e.Y)
Dim hti As DataGrid.HitTestInfo = dgContacts.HitTest(pt)
If hti.Type =...
Greetings
I have an app that writes an ftp script file and also writes a batch file to execute the script file. When I double click on the batch file it runs the script file perfectly. Now I want to eliminate the double click and run the batch file automatically from my app. I am using the...
I struggled with the same issue a while ago. Here is a class that I pieced together from info gathered throughout the internet. The output is a dataset of employee names. This has worked pretty good for my needs, hope it helps.
Public Class clsActiveDirectory
Private Function...
Hello,
I would like to get the name of the most recent file added to a network directory. If I understand correctly, a FileSystemWatcher is more of a listener and wouldn't be appropriate in this case. I rather have an app that can be run at anytime.
Has anyone been tasked with this before and...
Hi
I'm using a dataset as the datasource for a datagrid. When the dataset is displayed in the grid a user can click on any column header of the dataset to alter the sort order as they choose.
My question is... if I now want to pass the user sorted dataset and display it in another datagrid how...
Greetings
I have a asp:listbox where I would like to have the first item selected when the page is first rendered, but I'm not sure how to do this. Could anyone help me on this?
Thank you
<ASP:ListBox id="lstCompany" runat="server" Width="90" Height="80">
<ASP:ListItem...
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.