Search

You searched for the word(s): userid:186467

Matching Posts

  • Re: messageBox in asp.net

    You cannot use the windows forms message box in a web application. In a web application you will have to use Javascript. You can use add this to your OnClientClick atrribute in the button. OnClientClick="return confirm( 'Are you sure you want to delete this?' );"
    Posted to Free For All (Forum) by atiface on 7/29/2009
  • Re: Send Bulk email using asp.net

    Ok two things, from your point of view you are just sending the email to the SMTP server. You cannot find out if the email exists or not through .net mail. Exceptions can be eaten and the error can be logged. That is you can put the sending of mail inside a try catch block and not let the exceptions break the loop. The loop will go on for all the users even if any exception do occur. You can also implement logging and log to a database or a file or even send an email to yourself if an error is generated
    Posted to Web Forms (Forum) by atiface on 5/30/2009
  • Re: Create a dynamic SiteMapPath Control

    You can create your custom sitemap provider. the nodes can come from the database or anything else you wish. Refer to the following links. http://geekswithblogs.net/casualjim/articles/52749.aspx http://www.4guysfromrolla.com/articles/020106-1.aspx http://msdn.microsoft.com/en-us/library/ms178431.aspx Hope this helps
  • Re: ASP.NET Roles

    In your <system.web> settings add the following < authorization > < deny users = " ? " /> </ authorization > What kind of authentication are you using? have you set you authentication propertly or not. Thirdly it could be a problem with your membership/role provider
    Posted to Security (Forum) by atiface on 5/28/2009
  • Re: loading our database to our server

    What database are you using? whats your hosting envionments (OS etc). how do you load the database? where are you images stored?
    Posted to Configuration and Deployment (Forum) by atiface on 5/28/2009
  • Re: ASP.Net Site

    I dont know if this might help you or not but I had a problem where there was a memory leak in the application. It turned out that somehow the collections ( and generic collections) were chewing up memory. All we had to do to fix it was to explicityly clear the collections after they were used and the memory leak went away. It was a bit strange to find that the collections were not being disposed off by the .net framework and memory was not being freed. Hope it helps .
    Posted to Web Forms (Forum) by atiface on 5/28/2009
  • Re: Bug in Details View

    Try swithing to HTML mode and remove your columns manuall in html. I am 100% sure it will work fine. Sometimes designer does not behave as you expect.
    Posted to Data Presentation Controls (Forum) by atiface on 5/28/2009
  • Re: how to retrieve the path of exe file

    System.Reflection.Assembly.GetExecutingAssembly.Location or System.IO.Path.GetDirectoryName(Application.ExecutablePath);
    Posted to Getting Started (Forum) by atiface on 5/28/2009
  • Re: Mail Merge using for Aspose.Word for .htm/html file

    This is a very weird approach to get rich text. Why dont you simply use html. You can create rich text in html itslef by using a combination of html and css. and use that as the email body. Have a read about creating html emails. Seconly emails sent in html will display proper formatting on email clients. You should rethink your approach.
    Posted to Web Forms (Forum) by atiface on 5/28/2009
  • Re: Binding DataSet to Gridview

    add this line at the end of your TSqL select * from @t Wrap your tsql in a stored procedure. Call the stored procedure form your code. you will get the dataset/datatable and will be able to bind it to a grid view. Regards
    Posted to Data Presentation Controls (Forum) by atiface on 5/28/2009
Page 1 of 8 (71 items) 1 2 3 4 5 Next > ... Last »