No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
18 Posted Topics
[code] For Each s As String In Src Next [/code]
Ok here is the problem, I got a 2 column page and I need the background color of a fo:block-container to flow like this: 1. Left column: left side page to center page 2. Right column: center page to right side page 3. Top: where block-container starts 3. Bottom: bottom …
If i'm correct then you should use "Bind" in the EditItemTemplate, because Eval is only read only.
Convert your data to XML and send it to PHP.
It looks like it's a problem with the ID's of the buttons. Try turn of the ID's of the buttons (ItemTemplates) in the gridview and let ASP.NET assign ID's. Maybee it works. I also see that you use Eval for the EditItemTemplate, this can give problems, if so you sould …
Yes you can call a WCF Service from your Javascript and objects. I think it depends on where you want to use it for.
Why do you think you can't you classes, this is the way to share code among pages, websites or applications. Maybe it's a good idea to put your code in a UserControl, you can also share them across other pages.
You do 1. [CODE] Select Case ("color") [/CODE] Because the value = "Color" it will never be anything else so it wil never fall in red, white or blue. try this [CODE] Select Case (Request.QueryString("color")) [/CODE] 2. QueryStrings are name-value pairs (name=value), you have (color=red=text) 3. duplicate names 4. only …
It looks like it has a reference to a file that is missing after deployment. Do you have a reference to another file in the project (it looks like it's looking for something in the App_Web folder)? If there is a reference to a file then you have to copy …
I hope this is what you are looking for. This example gets data from a table row by row. [CODE] string conString = "Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword"; using (SqlConnection con = new SqlConnection(conString)) { string sql = "SELECT * FROM tbl"; SqlCommand cmd = new SqlCommand(sql, con); try { con.Open(); …
This is done by using css. there are threads on daniweb.com, search "css print" up in the searchbox
If you can use AJAX you can put your controls in a UpdatePanel and add a timer. Set the interval to a time to refresh the page and rebind the controls. Maybe this will solve your problem.
I hope this will help you: [CODE] Dim myMap As New ExeConfigurationFileMap myMap.ExeConfigFilename = "MyConfigFile.exe.config" Dim cs As Configuration = ConfigurationManager.OpenMappedMachineConfiguration(myMap)[/CODE]
Any1 any idea why i can import the AdobeReader COM Component in VB 2005 Express Toolbox (Tools > Choose Toolbox Items) and not in VS 2008? In VS2008 it shows only a few COM Components.
I hope this will help you out: Set SelectionMode to FullRowSelect [CODE] Private Sub myGridview_SelectionChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles myGridview.SelectionChanged Dim gv As DataGridView = CType(sender, DataGridView) If gv.SelectedRows(0).Index > 0 Then Dim row As DataGridViewRow = gv.SelectedRows(0) Dim RecID As Integer = CType(row.Cells(0).Value, Integer) ' …
Hello every1, I'm using CAS permissions in my app, everything is working except when I want to load an assembly. All CAS Settings now are: [CODE]<Assembly: FileIOPermission(SecurityAction.RequestOptional, Unrestricted:=True)> <Assembly: FileIOPermission(SecurityAction.RequestMinimum, Unrestricted:=True)> <Assembly: UIPermission(SecurityAction.RequestOptional, Unrestricted:=True)> <Assembly: UIPermission(SecurityAction.RequestMinimum, Unrestricted:=True)> <Assembly: FileDialogPermission(SecurityAction.RequestRefuse, Unrestricted:=True)> <Assembly: FileDialogPermission(SecurityAction.RequestMinimum, Unrestricted:=True)> <Assembly: IsolatedStorageFilePermission(SecurityAction.RequestOptional, Unrestricted:=True)> <Assembly: IsolatedStorageFilePermission(SecurityAction.RequestMinimum, Unrestricted:=True)> <Assembly: …
Hello all, I'm having a problem with sending a serialized object over a NetworkStream. I'm using the BinaryFormatter and the object is serialized and deserialized fine writing to a file. If I use a streamwriter to send text it works fine after the [B]Flush()[/B] [CODE] nStream = _tcpClient.GetStream() Dim sw …
Hi, I have a question. I'm studying MCTS Application Development Foundation .NET 2.0 VB and I have a Server - Client Messenger app to exchange text. One NetworkStream is used both for reading and writing the strings. Now I want to exchange different types of objects to and from the …
The End.
Ossehaas