Some ASP.NET based forums:
- InstantForum (VB.NET based): http://www.instantasp.co.uk/products/instantforum/default.aspx
- Chatterbox (VB.NET): http://www.saigonova.com/
- ASP.Net forums as mentioned
It is not the Javascript code there bringing up the "Print Dialog", it is 100% the user's Operating System doing so......
you cannot code around it, it is not within a programmer's control
You'll have to dynamically add the control:
http://aspnet.4guysfromrolla.com/articles/081402-1.aspx
Also might want to read about "working with" dynamic controls:
http://aspnet.4guysfromrolla.com/articles/082102-1.aspx
ugg.. actually you are looking to replace the HTML with a Server-based control?
that doesn't seem feasible unless you wrap the added controls with Literal controls holding the text around the image tags....
if that's not a solution, it is out of my skill level unfortuantely
Hopefully you have a little C# savy...
This link:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstechart/html/vsgrfwalkthroughaccessingdhtmldomfromc.asp
Shows something kinda similar to what you are wanting to do
This code:
http://www.4guysfromrolla.com/demos/StripHTML1.asp
should also be quite convertable to VB.NET instead of VBScript
What namespace is "HTMLDocument", "DirectCast", and "IHTMLElementCollection" part of ?
i was going to mess around with it to help you out, but can't find what part of the framework it is
i think you are looking at it the wrong way.. don't think "delete", think "hide"
Bind the grid with all 4 columns, and wire into the "OnItemDataBound" event of the DataGrid and set e.Item.Cells(Index).Visible = False