Forum: ASP.NET Sep 22nd, 2009 |
| Replies: 5 Views: 420 Ramesh is right in that ASP.NET mobile controls are being phased out, but it really depends on your target audience, IMHO it's always best to consider the lowest common denominator, while you may not... |
Forum: ASP.NET Sep 22nd, 2009 |
| Replies: 2 Views: 233 Hosting wise you could try infosaic.com they do reasonable .NET hosting and you get a sql express database with the hosting package. You also get a domain name with the package too. For more robust... |
Forum: ASP.NET Sep 22nd, 2009 |
| Replies: 5 Views: 420 There are databound controls in asp.net mobile like the mobile list control, or you can use something like the mobile textview control and add your own markup. You have to be a bit careful as... |
Forum: ASP.NET Sep 22nd, 2009 |
| Replies: 7 Views: 545 I take it you are using VS2005 or 2008 if you are using an app_code folder? I suspect you may need to change your publish settings. Also you said web application not website, so just in case, you... |
Forum: ASP.NET Sep 22nd, 2009 |
| Replies: 2 Views: 246 I agree with sknake safest place is in the database, if you don't have one why not use ASP.NET forms authentication and put the login details in the web.config file? |
Forum: ASP.NET Sep 22nd, 2009 |
| Replies: 3 Views: 407 or you could use a custom validator:
this part in your asp page
<asp:TextBox id="txtTextBox" runat="server"/>
<asp:CustomValidator id="cvLengthValidator" runat="server"... |
Forum: ASP.NET Sep 22nd, 2009 |
| Replies: 4 Views: 539 How about converting it so that it can be played with the silverlight media player using Expression Encoder |
Forum: ASP.NET May 28th, 2009 |
| Replies: 1 Views: 657 This library encapsulates the functions in the twitter api:
http://code.google.com/p/twitterizer/
See the twiiter api documentation for details:... |
Forum: ASP.NET May 28th, 2009 |
| Replies: 5 Views: 652 erm am I missing the point? ASP.NET & Javascript as competing web development technologies? You have to look at what your project involves, if you want to do any serious database driven web... |
Forum: ASP.NET May 28th, 2009 |
| Replies: 2 Views: 833 Hi sfRider,
Sadly, dynamic content is dynamic content, so if the links are being rendered on the fly by javascript then you will not be able to scrape them. |
Forum: ASP.NET May 3rd, 2009 |
| Replies: 7 Views: 879 Totally agree with SKnake on this, any kind of attempt to use dynamic sql should include thorough checking for SQL injection attempts.
The solution is as stated that the parameter is text and... |
Forum: ASP.NET May 3rd, 2009 |
| Replies: 3 Views: 483 I think what is required here is a basic understanding of how search engine spiders work. Typically they find new pages by following links to then from other pages. So if you link to the pages... |
Forum: ASP.NET May 2nd, 2009 |
| Replies: 1 Views: 511 you will not be able to see the flash buttons work in the Visual Studio IDE however you should see them when you debug in IE provided the code is correct for the flash object |
Forum: ASP.NET May 2nd, 2009 |
| Replies: 1 Views: 866 why not use an iframe on the the buy.com site to host the page on pay.com? |
Forum: ASP.NET May 2nd, 2009 |
| Replies: 1 Views: 674 try this article:
http://stackoverflow.com/questions/82319/how-can-i-determine-the-length-of-a-wav-file-in-c |
Forum: ASP.NET May 2nd, 2009 |
| Replies: 2 Views: 465 Hi,
I would load the seperate xml files into datasets then merge the datasets as you cannot merge the individual tables in a single dataset without iterating through the data rows, check this... |
Forum: ASP.NET May 2nd, 2009 |
| Replies: 1 Views: 2,271 Hi,
You need to take a close look at your web.config file, it looks like you may have a duplicate line in the HttpHandlers section.
It could also be that you have 2 web.config files i.e. 1 in the... |
Forum: ASP.NET May 2nd, 2009 |
| Replies: 1 Views: 307 Sorry for the very general answer but the question is very general too! I suggest you look up some sites dealing with web design, CSS, web standards and probably table layouts too. These are really... |
Forum: ASP.NET May 2nd, 2009 |
| Replies: 3 Views: 840 I think the generic description for this is single sign on, there are several ways to achieve it, some are more secure than others, essentially google is using cookies combined with a check that the... |
Forum: ASP.NET May 2nd, 2009 |
| Replies: 3 Views: 483 Your original solution will work fine, I suggest you use some url rewrites to achieve the impression that there are multiple event pages on the site. One simple way is to use an assembly called... |
Forum: ASP.NET Mar 11th, 2009 |
| Replies: 1 Views: 399 Here's a Scott Gu blog which explains how to configure membership for use on a remote server, you may have to ask the hosting company to configure the database for you:
... |
Forum: ASP.NET Mar 11th, 2009 |
| Replies: 3 Views: 2,327 Hi Jumbo,
A infarction said, you don't ever link to the Master Page url so probably in your code you have something like:
protected void btnTest_Click(object sender, EventArgs e)
{
... |
Forum: ASP.NET Feb 4th, 2009 |
| Replies: 2 Views: 1,662 The errors are both related to IIS configuration you need configure the application virtual directories as applications:
http://msdn.microsoft.com/en-us/library/zwk103ab.aspx
If you are using... |
Forum: ASP.NET Feb 4th, 2009 |
| Replies: 1 Views: 573 you can use an ASP.NET Ajax Panel and a timer control:
http://www.asp.net/ajax/documentation/live/tutorials/IntroToTimerControl.aspx |
Forum: ASP.NET Feb 4th, 2009 |
| Replies: 1 Views: 893 Here is a VB example:
http://www.codeproject.com/KB/aspnet/AppPoolRecycle.aspx |
Forum: ASP.NET Feb 4th, 2009 |
| Replies: 1 Views: 1,167 This seems to do the job for firefox, but some are reporting problems for Opera and Safari:
http://forums.asp.net/t/1013531.aspx |
Forum: ASP.NET Jan 29th, 2009 |
| Replies: 2 Views: 372 I think you should google 2 things
1. ASP.NET hosting (you need web space to host web sites)
2. FTP (this is how you usually get your files into the web space) |
Forum: ASP.NET Jan 29th, 2009 |
| Replies: 3 Views: 2,281 The error you are getting is because you are trying to modify the referrer header which is restricted if you comment out that line it should work |
Forum: ASP.NET Jan 27th, 2009 |
| Replies: 2 Views: 427 changing the locale of the database might work, you can ask the hosting company to do that |
Forum: ASP.NET Jan 27th, 2009 |
| Replies: 6 Views: 1,073 |
Forum: ASP.NET Jan 26th, 2009 |
| Replies: 1 Views: 1,655 in your global.asax
public static string GlobalMethod = "example";
in your page class
lblYourLable.Text = Global.GlobalMethod;
if your Global.asax.cs has a namespace then use:... |
Forum: ASP.NET Jan 26th, 2009 |
| Replies: 6 Views: 1,073 There is some code here:
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.datagrid.updatecommand.aspx |
Forum: ASP.NET Jan 26th, 2009 |
| Replies: 2 Views: 1,004 1. Right click your project in VS and click properties
2. Cick the publish tab on the left
3. Choose "Prerequisites"
4. Choose "Crystal Reports for .NET Framework 2.0" (make sure
the check box is... |
Forum: ASP.NET Jan 26th, 2009 |
| Replies: 2 Views: 1,435 you are right it is tedious to read through it!
my suggestions, the sql error appears to be a problem with the syntax of the inline queries you have specified for your SqlDataSources, more... |
Forum: ASP.NET Jan 26th, 2009 |
| Replies: 6 Views: 1,073 2 approaches
1. Add the logic for delete and update to your webservice and specify these via the datasource wizard
2. Add the update delete logic to your page class and handle the update and delete... |
Forum: ASP.NET Jan 26th, 2009 |
| Replies: 1 Views: 575 I am presuming you are using a SQL database here, so why not create a fulltext index for the fields you want to query. Then use 'contains' to search the fulltext index.
Any other way will involve... |
Forum: ASP.NET Jan 19th, 2009 |
| Replies: 3 Views: 357 Use execute scalar as it returns the value of first row of the first column of the result set like so:
string result = (string) myFileCommand.ExecuteScalar();
lblTotalSpaceUsed.Text = result; |
Forum: ASP.NET Jan 19th, 2009 |
| Replies: 3 Views: 2,547 this article has both server and javascript solutions:
http://aspalliance.com/1614_Adding_Filter_Action_to_FileUpload_Control_of_ASPNET_20.all |
Forum: ASP.NET Jan 19th, 2009 |
| Replies: 6 Views: 985 we use infosaic.com, they support all versions of asp.net, sql etc too |
Forum: ASP.NET Jan 19th, 2009 |
| Replies: 2 Views: 1,829 you could also add a literal control to your page/user control
<asp:Literal id="litHtml" runat="server"/>
And then assign your html to its text property:
litHtml.Text = "<h3>Hello... |