Search

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

Matching Posts

  • Message Blog.NET - available

    Hi all, me and my friends just launch our asp.net product - Message Blog.NET, it's a script that allows you to create your own personal microblog in 5 minutes. You can read more HERE
    Posted to Announcements (Forum) by tihomir_wwf on 11/3/2009
  • Set Default Font on Graphics object

    Hi, I'm writing library that read Microsoft Math Equation Objects from RFT and then extract them as JPGs. Here's my code: Image image = Image.FromStream(gPictureData, true, true); Bitmap bmp = new Bitmap(dx, dy); // dx is the picture width, dy is the picture height, they're ok Graphics gr = Graphics.FromImage(bmp); gr.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None; gr.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor; gr.Clear(Color.White); Rectangle
    Posted to System.Drawing/GDI+ (Forum) by tihomir_wwf on 9/19/2009
  • Re: Why XmlDataSource cannot load file when Medium trust level is defined?

    First, thanks for both replies :) Unfortunately, moving to another folder instead of App_Data didn't change anything. Also, I forgot to mention that I test it on my local miachine when I've grants to set trust level. I found that in medium trust, reflection is not allowed, but I'm not sure if XmlDataSource use reflection !? :)
  • Why XmlDataSource cannot load file when Medium trust level is defined?

    Hi all, I try to make my asp.net app to work in medium trust level defined: <trust level="Medium" originUrl="" /> But when it's defined in the pages I've XmlDataSource + Repeater I receive this error: Hi all, I try to make my asp.net app to work in medium trust level defined: <trust level="Medium" originUrl="" /> But when it's defined in the pages I've XmlDataSource + Repeater I receive this error: Server Error in '/' Application
  • Cannot modify files after upload files into hosting

    Hi, I've an asp.net 2.0 app that uses xml files to store data. it works fine on my local machine but after I've uploaded app files into godaddy hosting (IIS 7.0 ASP.Net Runtime Version: 2.0/3.0/3.5) and I tried to modify some xml file using the app, it gives me error: System.Security.SecurityException: Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, I tried: - add trust level full into web.config, but it's not possible
  • how to synchronize file access for writing

    Hi all, in my asp.net app, it's possible different users to access same xml file for writing in it. Could you suggest me some useful article or simple example where it is done in best way ? Thanks in advanced for all replies :)
  • allowing user to add new lagnuage in release asp.net app

    Hi friends, I'm working on asp.net application which will be delivered to the customers in release. But I want to allow the users to add new languages for the asp.net app. Unfortunatelly, Adding of a new .resx file to the app requires to recompile the whole project. Is there other way how to allow the customers to add new language without recompile the app ? Thanks in advanced for all replies :)
    Posted to Localization (Forum) by tihomir_wwf on 7/5/2009
  • displaying multiple static paths by single page

    Hi, I'm trying to display paths like: http://www.mysite.com/page1/category1/ http://www.mysite.com/page1/category2/ by the page: http://www.mysite.com/Default.aspx Is there any way to do that instead of dinamic paths, ex. http://www.mysite.com/Default.aspx?page=page1&category=category1 Thanks in advanced for all replies :)
    Posted to Getting Started (Forum) by tihomir_wwf on 7/4/2009
  • Re: 14 separate GridViews and SqlDataSources on a single page is too slow

    Thank you very much for both replies, it works just great. In case that someone else came here with same issue, the key is: Add every SqlDataSource/GridView in separate UpdatePanel + Timer in every UpdatePanel, hadle the OnTimerMessagesTick and then databind the SqlDataSource/GridViews (or you can use MultiView and in the event handler just change its ActiveViewIndex) and change the timer's Enable to false, not to execute again. you can see how it works HERE
    Posted to Data Presentation Controls (Forum) by tihomir_wwf on 5/25/2009
  • 14 separate GridViews and SqlDataSources on a single page is too slow

    Hi friends, I've the following issues: On a single page I want to show 14 different (SqlDataSources and GridViews), every SqlDataSource connects to separate databases. When I add all them, page loads too slow. So, I was wondering what could be done. Is it possible to separate them for asyncronius loading using ajax (for ex. the visitors to see the first 3 gridview/sqldatasources, while others still loads) ? Thank you very much for any help in advanced :)
    Posted to Data Presentation Controls (Forum) by tihomir_wwf on 5/22/2009
Page 1 of 7 (64 items) 1 2 3 4 5 Next > ... Last »