hi every one.
i develop a web site some fields entered in English and others entered in Arabic language,,
now i wanna to simplify the input operation for the user ,i wanna arabic textbox as a DLL ,,
i have one but it works only with IE not with firefox or google chrome ..
thanks so much
...
I can't see a reason why we couldn't do the same thing Heroku does for an ASP.NET website.
Anyone care to object?
...
Hi Experts,
I have to break a HTML content string in to multiple lines...
And each line should have some fixed characters, 50 or 60
Also I don't want to break the word..or html tags...
ex : <p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p><em>"Text goes <font color=red>Hello world</font> Text goes here ...
How can I insert code into a page in ASP.Net from a seperate source file?
Say I have:
<%
Response.Write("hello world");
%>
How can I make it something like:
<% include(helloworld.cs) %>
I know how it work sin the header with the <%@ and CodeFile= but I can't make it work for different spots of code. Is there a w...
I have a table in my database which keeps track of a 3 level hierarchy. What is the best way to display and change/modify this hierarchy? Which asp.net control to use and how?
...
I have ASP.NET web application which stores information on the session while user goes through pages. Will I have any problems if I deploy such application to Windows Azure?
...
How can one modify DomainService code without the custom code being overwritten?
Is there a way to put the custom code in a seperate class file?
Thanks.
...
I have following sitemap defined:
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="" title="Root" roles="*">
<siteMapNode url="~/Default.aspx" title="Home" roles="*" />
<siteMapNode url="~/ProjectList.aspx" title="Projects" roles="*">
<siteMapNode url="~/ProjectOverview.aspx" titl...
I am trying to check if a string ends in "@something" and extract "something" from it if it does. For example, I am trying to do something like this:
string temp = "//something//img/@src"
if (temp ends with @xxx)
{
string extracted = (get "src");
...
}
else
{
...
}
How can I accomplish this?
...
What is the difference between
(1) AllowServerPaging
(2) AllowCustomPaging
(3) AllowPaging
of PagedDataSource ? please explain the situation to pick up the appropriate one.
...
Hi all, I'm using Quartz.NET for a system I am creating, where jobs are run via a Windows Service and can be added and editted (inlcuding trigger details) in an ASP.NET page.
I'm having some issues though - I need to be able to modify a triggers details, such as the type of simpletrigger or the cronexpression, and I've been told that I ...
I have mapped *.xyz extension to my own custom handler in asp.net and can run it on Windows asp.net.
How can I do the same thing on mono (Linux/Apache - ubuntu)?
I have this in my web.config:
<httpHandlers><add path=".xyz" verb="" type="MyCustomHandler,..."/>...
I also added similar things to mod_mono.conf and several other files but...
I'm trying to do something like this:
<h1><% =FirstName %></h1>
However, intellisense doesn't show anything when I'm inside the percent brackets, and if I just run it, the resulting web page has not picked up anything inside the percent brackets. I've also tried using other code in the percent brackets, but nothing seems to get picke...
I have a process that retrieves html from a remote site and parses it. I pass several URL's into the method, so I would like to ajaxify the process and give a screen notification each time a URL completes parsing. For example, this is what I am trying to do:
List<string> urls = ...//load up with arbitary # of urls
foreach (var url in u...
I want to make my ASPX page to look different based on some Object property.
Assuming Customer is the object, I want to make Customer.aspx file layout different for both CustomerType.Regular and CustomerType.Vip values of the Customer.Type property.
Theoretically it is possible for me to have two asp:Repeater controls with different Id'...
I am workin on a aspx site hosted on shared hosting on appliedi.com with isapirewrite enabled.
The site structure is WWWROOT->WEBSITE->FILES
If i am right, all rewriterules go in to htaccess file. Now one such file is present in WWWROOT Folder, one in WEBSITE
My questions,
1. which htaccess actually works
2. When i see both files there...
Hi all,
I'm creating an inbox system for my website which allows basic communication between users. I'm fetching the results with jquery calling a webservice.
Then I'm using a jquery template engine to render the results to the screen. So far this all works good. but now I want to add some click functions on certain parts of inbox mess...
I have a method which returns a array of ByteArray:
public byte[][] Draw(ImageFormat imageFormat, ImageSize imageSize);
and I need to write it into a MemoryStream:
var byteArray = instanceName.Draw(ImageFormat.Jpeg, ImageSize.Dpi150);
MemoryStream ms = new MemoryStream(byteArray[0]);
This is working so far because the array of byte...
Hi,
I want to implement an image gallery in asp.net/C#. I am using sql server 2008, visual studio 2010 and .NET 4.0.
I have made a webpage and now want to display 6 images as thumbnails (and their names just below the thumbnails) at the center of the page. The format of the display is something like this:
img1 img2 img3
`<name...
im trying to create a generic gallery application that uses a database, with the abilitiy to upload images from the website, using microsoft's visual web developer.
-- im fairly new with databases and asp.net but am getting the hang of it i think ><
most of the examples i see are one mdf file with several tables. but i want something th...