Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rdgerken

    Forms Authentication - User Collection??

    Hi all, I'm wanting to send out a notification email to all users in my forms authentication database that are in a given role. I have figured out how to do certain things based on a given users role which is cool, but is there a way to get a "user collection" from the authentication database...
  2. rdgerken

    Problems connecting ASP.net to SQL database

    I'd check the surface area configuration and firewall... lots of times that can prevent connections into a remote SQL DB.
  3. rdgerken

    Reportviewer / Tableadapter help

    Hi all. Can someone please help me set up a data source to a report on an asp.net application dynamically at runtime? I have everything working when I just set it up using the editor, but now I would like to programatically set the datasource at run time. Here's what I have so far, but no...
  4. rdgerken

    Generate Checksum on string?

    Can anybody post some code or give me some info on how to generate a checksum on an ASCII string? I have an application where I need to compare large strings, and be able to tell if the string has changed. Thanks!
  5. rdgerken

    Gridview edit with hidden, readonly or both Primary Key

    http://geekswithblogs.net/mnf/archive/2006/09/01/89957.aspx Here seems to be the best explanation I have found. I modified my update query to have only the parameters I am displaying, and that works fine. Just stinks to have to maintain the update query based on what fields you have visible -...
  6. rdgerken

    GridView in scrollable window

    Thanks for the help guys. I'm almost there. It works, but for some reason, I get a big gap between the gridview (which is now scrollable) and the next items below it on the page. I have tried all kinds of things, but was hoping that you'd be able to help me bring this to completion. The code...
  7. rdgerken

    GridView in scrollable window

    Can anyone explain how I could put a gridview inside of a scrollable window? Basically, I'd like the header, footer, and navigation bar to be statically displayed in the browser window at all times, and then the gridview would have scrollbars to pan around in it (if it was too large to show)...
  8. rdgerken

    Capturing an event?

    http://www.codeproject.com/dotnet/opcdotnet.asp I am using this OPC client from this page. It works pretty good - but when using it in an asp.net project, I'm having difficulty figuring out how the event callbacks should be handled properly.
  9. rdgerken

    Capturing an event?

    Hi folks.. Quick one here for you. In a desktop version of my application, I make a connection to a data server, tell it which points I want to read - and this guy comes back with read events with the data. Works pretty good. I'd like to do this same thing with a asp.net 2.0 application, and...
  10. rdgerken

    OPC Data Access?

    Has anyone ever tried reading data via OPC in a web application? I have been able to use some open source stuff I found for desktop applications successfully, but I can't find any info for doing that in a web application (without buying some third party controls). I appreciate any input if you...
  11. rdgerken

    Change parameter value using a control

    I'll give that a shot. Thanks!
  12. rdgerken

    Change parameter value using a control

    <asp:SqlDataSource ID="SqlUser" runat="server" ConnectionString="<%$ ConnectionStrings:StagingConnectionString %>" SelectCommand="SELECT * FROM [User] WHERE ([UserActive] = @UserActive) ORDER BY UserName" EnableCaching="false"> <SelectParameters> <asp:Parameter...
  13. rdgerken

    Change parameter value using a control

    jben: this is what I wanted to do, but in the click event, how do I access the parameter's default value to change it? That is what I'm having trouble with. I'm sorry the OP was confusing - sometimes its hard to get down what you are really after. thanks for the responses
  14. rdgerken

    Change parameter value using a control

    Hi all, I'd like to change the default value of a select parameter using a link button to change the value of this parameter from True to False and vice versa. The only problem is that I don't know how to access the parameter.defaultvalue in the code. I have been able to get this to work...
  15. rdgerken

    Running applications on client

    Hello everyone... I would like to be able run a ping command on the client using cmd.exe. Can anyone provide some direction for me? So far, I have only found information on how to do this on the server. Thanks
  16. rdgerken

    Using Dropdowns in Detailsview

    Hey folks, I get a "Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control." error when I enter edit mode on my DetailsView. Basically, I've added some dropdown lists in my detailsview that are populated from child table. It all works...
  17. rdgerken

    Create Folder on Server?

    yeah, that seems to work pretty good... I actually ended up using some other crazy code in order to do a "copy". Disappointing that the copy wasn't really built into that class. I'm sure there is a reason! :)
  18. rdgerken

    Timeout expired - SqlDataSource

    I believe that the link you referenced me to covers details of the datagrid control. I'm using the gridview control, and I'm trying to take advantage of the built-in sorting and paging functionality - but I don't know how to do this without linking it to a datasource at designtime. I'm sure a...
  19. rdgerken

    Timeout expired - SqlDataSource

    I think I tried that originally, but then I think I lost a lot of the "built-in" features of the gridview when I broke this connection, and set it up manually - (such as the sorting and paging) - can you set up the connection manually and still setup the sorting and paging too? I'm not sure how...
  20. rdgerken

    Create Folder on Server?

    Can anyone provide an example of how to create a folder on the server from within an ASP application? (When the user sets up a new project, I want to create a folder on my server with a default set of folders based on the project number automatically). I saw some information about the...

Part and Inventory Search

Back
Top