Web Forms :: Install Not Present Fonts Dynamically On Client Pc?
i have in my website in which i have used certain fonts that are sometimes not present on clients computer is it possible to detect if certain font is present or not and if not present directly install it on client computer
View 1 Replies (Posted: May 04, 2010 05:28 PM)
Sponsored Links:
Related Forum Messages For ASP.NET category:
How To Install .Net App On Client Machine
e are developing an ASP.Net application. The requirement is to install and run an app (say console app developed using .Net) on the client machine through out ASP.Net application. How can we install this app (and .Net Framework required to run the app) when the user access our web app
Posted: Apr 02, 2011 05:33 AM
View 2 Replies!
View Related
How To Install A CMS For The Client To Make Changes To The Content
I have a site that is fully designed and content implemented, but need to install a CMS for the client to make changes to the content. I am used to php CMS scripts but not ASP or .Net. Basically all I need is an admin login for the client and there they can select the page they wish to edit. recommend a solution that is easy to install, implement and is free or very inexpensive? Only needs to be a WYSIWYG type editor, not too many bells and whistles.
Posted: Dec 16, 2010, 08:21
View 5 Replies!
View Related
Client Side Dependencies - User To Install Fx 3.5 Runtime?
I have a ASP.NET web-site built on 2.0 framework. This works fine on IE and firefox. Now I do few ammendments to the web-site and build it on 3.5 Framework. My question is what upgradation I need to force on users of my site. Do users need to uprade with the version of IE. How does the client machine get .NET 3.5 specific assemblies. Is it necessary for user to install Fx 3.5 runtime?
Posted: Apr 12, 2010 11:47 AM
View 3 Replies!
View Related
Web Forms :: Client ID Of A Dynamically Generated Control?
I've recently added a Master Page to my site,but realized that it's caused some problems in my existing JavaScript setup.I am able to use the following code in most places without any issue to get the ClientID: '<%=myControl.ClientID%>' The problem I have encountere is that I have several pages that add controls dynamically,and then execute events based on an ID that's passed in,where I can't use this line,because I won't know the ID of the control I'm trying to access until the Javascript executes.Here's a simplified version of the problem: When the page runs,it creates n textboxes dynamically,and appends a relevant ID from the database to the end of the ID.Let's say the page has added 3 textboxes with the following IDs: myTextBox1 myTextBox7 myTextBox115 Later,a javascript event fires,and I need to be able to access the control through JavaScript like this: myJavaScriptFunction (controlID) { myvar = document.getElementById('myTextBox' + controlID); }
Posted: Feb 23, 2010 12:32 PM
View 1 Replies!
View Related
Configuration :: Install The MSI File In Client System Along With Database File?
I have developed an Asp.Net application with backend sqlserver 2008 database. Now i want to install the MSI file in client system along with database file. In client system i want to install the sqlserver with out any sql editor. i.e The sqlserver shouldn't use for development purpose. The sqlserver must acts just like engine between application and database file. In sqlserver which edition i have to install in client system to do the above things ?
Posted: Mar 29, 2010 10:46 AM
View 2 Replies!
View Related
C# - Unable To Use Certain Fonts Programmatically?
I am trying to programatically create a bitmap with a specified font in ASP.Net. The idea is that the text, font name, size color etc. will be passed in from variables and a bitmap of the text using the font etc will be returned. However, I have been finding that I am only able to do so using the following code with certain fonts. <div> <% string fontName = "Segoe Script"; //Change Font here System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(100, 100); System.Drawing.Graphics graph = System.Drawing.Graphics.FromImage(bmp); [Code]... If I change the font name in the areas indicated by the comments to Arial or Verdana both the image and the label appear with the correct font. If however, I change the font name in both locations to something "Segoe Script" the Label will show up in Segoe Script but the image is in what looks like Arial. Update: Based on this question here I was able to get it working by using a PrivateFontCollection() and loading the font file like so. <div> <% string TypeFaceName = "Segoe Script"; System.Drawing.Text.PrivateFontCollection fnts = new System.Drawing.Text.PrivateFontCollection(); [Code]....
Posted: May 6 10 at 14:30
View 2 Replies!
View Related
WYSIWYG Best Practice For Handling Fonts Faces
I have a WYSIWYG textarea (CKeditor) in my CMS.Most of the users write the article first in a word document and then paste it in the textarea. Sometimes they paste as plain text, but sometimes not. And sometimes the articles final result is a mess because of the HTML that Word generates. I have problems specially with the fonts, people change font face in Word and when they paste text in the textarea, the font face used in Word remains (seems that Word uses the <font> tag.
Posted: Aug 23, 2010, 18:55
View 3 Replies!
View Related
Downloaded Fonts Aren't Showing Up Online
Ive downloaded some fonts for my site but when I uploaded it, default fonts were used. I called GoDaddy and they said they dont know anything about that kind of stuff and that I have to do something on my end. Does anyone know what I need to do? There are 3 different fonts that arent showing up.
Posted: Feb 01, 2009 11:17 PM
View 1 Replies!
View Related
How To Change Individual Lineitems Fonts For Checkboxlist
I am using a checkboxlist which I am populating from the database using Databind(). And i am having Dropdownlist in UpdatePanel to avoid postbacks which is also populated form database. Each Item in dropdownlist-> Associated to Many Items in Checkboxlist. Is there any way I can Make Associated listitems bold(to highlight them) on Dropdown Selected Index Changed Event so that user will know he has to select the highlighted checkboxes for the selected value in dropdownlist?I have tried using the listitem Attributes as well but it's not working. See the code below. [Code]....
Posted: Sep 7 10 at 18:24
View 1 Replies!
View Related
ReportViewer Control Fonts To Century Gothic?
We are using ASP.NET ReportViewer Control to render rdl files. In the rdl files we have set the font to "Century Gothic" and in preview mode it renders the fonts nicely. However - when it gets rendered on browser we see the fonts defaulted to "Times New Roman". I tried couple of things without success: 1. Setting the font family of the page () 2. Setting the FontNames of the ReportViewer control One more thing is I don't see Century Gothic in the list of available fonts in the HTML Editor inside Visual Studio 2010. Do I need to add them somewhere?
Posted: May 6 10 at 14:33
View 1 Replies!
View Related
Inserting Italic Fonts In Title Tags?
I m trying to insert italic fonts in title tags but when i use <i> it takes these tags as string I have also tried with htmlencode but not working below is my code // Title is a string which will appear in the title tag // BreedSpeciesName is a string which will get the dynamic data // ScName is string which needs a <i> tag Title = BreedSpeciesName + " (<i>" + ScName + "</i>) owner experiences.";
Posted: Jul 02, 2010 06:27 AM
View 2 Replies!
View Related
AJAX :: Fonts Not Properly Displaying In Accordion Control?
The site url where one can see the issue is here The issue, with reference to the site, is as follows. The font used for the text "Click on the topic below for additional information" is the same specified in the ccs file specified for the accordian controls (i.e., Praparation, Rite Of Baptism, Role Of Godparents) via theContentCssClass partameter in an accordianpane element. However as one can see by expanding the accordian it is being displayed differently (i.e darker and "fuzzy"). Has anyone else expereinced this? Does anyone know how to correct this?
Posted: Jul 26, 2008 06:26 PM
View 9 Replies!
View Related
Play Dynamically Generated WAV File On Client Click?
I'm trying to play a WAV file that I generate dynamically in a HTTP handler and setting the NavigateUrl property of HyperLink control: <asp:HyperLink runat="server" NavigateUrl="~/ServeAudio.ashx" Text="Play Sound" ImageUrl="~/images/speaker_louder_32.png" ToolTip="Play Sound"></asp:HyperLink> But when I click on that link, it opens Windows Media Player - I don't want that. I just want the sound to play. I have also tried using a few of the jQuery plugins and they seem to work if I have have a fixed URL to a WAV file but they don't work if I set the URL to my HTTP handler.
Posted: Dec 30 10 at 17:12
View 1 Replies!
View Related
AJAX :: Dynamically Populate A ComboBox Through Client-side Javascript?
I'm using the ComboBox control from the May 2009 release of the ASP.NET Ajax Control Toolkit. I'd like to try and populate this ComboBox's list of options dynamically from the client-side Javascript (because I'm retrieving the data from the server based on the user's selection in another drop-down box). how to accomplish this? I tried this: [Code].... And it didn't work. The ComboBox just ended up with just one item (the first one) in the list, instead of all of them.
Posted: Jul 29, 2009 11:06 PM
View 3 Replies!
View Related
C# - Register Client Script With Dynamically Loaded Control In Ajax Call?
I have a page that contains a custom tab control. When you click different tabs, it does a an ajax callback. During that ajax call, the code dynamically loads a different control based on which tab was clicked, then adds it to the appropriate tab. So basically I have some code that does a switch statement, uses LoadControl(), then adds the control in. The issue I'm having is that none of the javascript within each of those controls that gets loaded is getting registered on the page. Based on this thread: [URL] I thought I just had to switch from using Page.ClientScript.RegisterClientScriptBlock to ScriptManager.RegisterClientScriptBlock. I did that, but still nothing. Am I misunderstanding something about the ScriptManager? I want the javascript to be registered from within the dynamically loaded control, which happens to be loaded during an AJAX call.
Posted: Sep 10 10 at 15:20
View 1 Replies!
View Related
Web Forms :: How To Get The Url Present In The Browser
I will try to be very clear in the description of my issue. To access a page on the intranet, I have to use this url http://intranet-staging/_layouts/Cra...p/Default.asp if I am accessing it form outside I have then to use this other url https://remote.intranet.co.uk/_layou...g+Default.aspx My goal is to detect whenever someone is trying to access the page externally. To acheive it, I am using in the web page the following method Request.Url.ToString() but it is always returning this value http://intranet-staging/_layouts/CrashTestApp/Default.aspx regardless if the page is reached from outside or internally. Request.Url.ToString() is actually all the time returning the url on the server. is there a way to get the real url used to access the page so that I can detect people accessing externally ?
Posted: Jul 26, 2010 11:07 AM
View 7 Replies!
View Related
Web Forms :: Present Different Labels For Different Users?
I need to be able to present different labels for different users. If Adam is logged in I need the label for a field to read "Age:" If Bob is logged in I need the label for the same field to read "How old are you?:" The input for both fields will still go into the same column in the database. So both fields targets the column "usrAge" in the DB. I would like a stable solution which would work for 1000 users and each user has it's own label for age. Ciould I map them in an XML file or maybe store the different labels in a specific table in the database. I don't know? Is there a general solution to this kind of problem? I think this problem is fairly similar to language translation of labels...only I need to specify the labels as users are created in the DB, each with a new label name.
Posted: Sep 09, 2010 12:20 PM
View 6 Replies!
View Related
Assign Validation Group To Asp.Button Dynamically On Client Side Using Javascript On The Base Of Item Selected In Drop Down List?
n a form I have multiple group of controls which are grouped using validation group property. I want to assign validation group to asp.Button dynamically on client side using javascript on the base of item selected in drop down list. Here is JavaScript which I am using, but it is not working. It shows validation group undefined but actually a default group is defined. <script type="text/JavaScript"> function NextClicked() { var _ddlStatus = document.getElementById("<%=ddl.ClientID%>"); var _selectedIndex = _ddlStatus.selectedIndex; var _btn = document.getElementById("<%=btnNext.ClientID%>"); alert(_btn.ValidationGroup); // here in messge it shows undefiend, yet I have defiend a group in button as default. if (_selectedIndex == 1) { _btn.ValidationGroup = "G1"; } if (_selectedIndex == 2) { _btn.ValidationGroup = "G2"; } }
Posted: Jun 15 10 at 5:28
View 1 Replies!
View Related
Forms Data Controls :: Key Was Not Present In Dictionary?
I'm trying to execute an aspx page but get this error. Server Error in '/' Application. The given key was not present in the dictionary. Description: An unhandled exception occurred during the execution of the current web request. review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary. [Code]....
Posted: Jan 20, 2011 11:02 AM
View 4 Replies!
View Related
Web Forms :: Errors When Using Dropdownlists Stating A Value Is Not Present?
randomly get errors when using dropdownlists stating a value is not present. This occurs when there is a value in the table (its a very old table with inconsistencies in data entry) that is not in the current values that are part of the dropdownlist. I'm wondering if there is a way to override this in the code behind. What I would like to be able to do is have the form control bypass the fact that the data is not in the dropdownlist when it opens in edit mode. I'm thinking that there needs to be something in the code behind but I'm not sure if that is the way to go and if so, how to code it.
Posted: Aug 20, 2010 09:17 PM
View 3 Replies!
View Related
Web Forms :: Print Button Present In The Toolbar Of IE Not Working?
I'm facing issue with the print button present in the toolbar of IE. Whenever i click the print button, the page's prerender event is called. This happens only in IE. When i try to print with Firefox, this does not happen. I have an iframe in first.aspx page. In the prerender event handler, I'm giving the iframe source as follows. iframe1.Attributes["src"] = "second.aspx" In second.aspx, i read an image file, convert into byte array and display it in the first.aspx iframe as follows. try { response.contenttype("image/jpeg"); response.binarywrite(img); response.end(); } catch(Exception ex) { response.write("Error loading the image"); } The image is displaying properly in both firefox and IE. But when i try to print it, i'm getting error in IE. Also, when i ran in debug mode, i found that on click of print button, the first.aspx's prerender event is being called (only in IE).
Posted: Aug 30, 2010 06:36 AM
View 1 Replies!
View Related
|