Forum: ASP.NET Sep 15th, 2009 |
| Replies: 10 Views: 416 Danny it's Web-based application with no message box :) people please help to make it cleaner, ASP.NET forum for ASP.NET questions.
ASP.NET http://www.daniweb.com/forums/forum18.html
You can use... |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 4 Views: 213 @Serkan and @Danny: please tell people the address of the forum they may be unfamiliar with the community..
@Nishanthi
http://www.daniweb.com/forums/forum18.html |
Forum: ASP.NET Jul 11th, 2009 |
| Replies: 7 Views: 1,263 Is that the inside repeater or so? |
Forum: ASP.NET Jul 11th, 2009 |
| Replies: 1 Views: 215 Please clarify!
I hope it's not a request for graduation project idea. |
Forum: ASP.NET Jul 11th, 2009 |
| Replies: 4 Views: 304 You're most welcome please mark it as solved. |
Forum: ASP.NET Jul 11th, 2009 |
| Replies: 1 Views: 803 If you've option to buy 3rd party tool, I recommend you to use Telerik RadGrid has some cool functionalities. |
Forum: ASP.NET Jul 11th, 2009 |
| Replies: 1 Views: 283 Its properties are readonly you can't set it, I recommend you to read this article http://www.aspfree.com/c/a/.NET/HTTP-File-Upload-without-User-Interaction-using-dot-NET/1/ |
Forum: ASP.NET Jul 11th, 2009 |
| Replies: 4 Views: 304 Modify it
string str = TextBox1.Text;
int l = str.Length;
int i;http://www.egyhat.com/radio/
for (i = 0; i < l; i++)
{
if (str[i] == ' ')
{
Response.Write("Invalid"); |
Forum: ASP.NET Jul 8th, 2009 |
| Replies: 7 Views: 493 Both are not the best way!
1- viewstate not for secure data
2- database not for small objects
Before giving a consulting, ask more questions... |
Forum: ASP.NET Jul 8th, 2009 |
| Replies: 7 Views: 493 |
Forum: ASP.NET Jul 5th, 2009 |
| Replies: 7 Views: 493 It depends?
If it depends on users and secure data -> Session
If it depends on users and not secure data -> Cookies
If it doesn't depend on users -> Cache or Application variables
It just hints... |
Forum: ASP.NET Mar 2nd, 2009 |
| Replies: 0 Views: 369 I hosted my website on server, some pages load data from Analysis services 9.0
It works in development machine.
It doesn't work on deployment machine and through this exception
Exception type:... |
Forum: ASP.NET Mar 2nd, 2009 |
| Replies: 1 Views: 532 Username\password encrypted in .config file, or you can use SQL Server public\private keys 2005 and later |
Forum: ASP.NET Feb 17th, 2009 |
| Replies: 3 Views: 557 I got this solution too but for some reasons I preferred server side, yes Java Script would be better, Thank you Aneesh_Argent so much :) |
Forum: ASP.NET Feb 16th, 2009 |
| Replies: 3 Views: 557 I want to speed ChechBoxList's getting the selected items, the normal approach is
foreach (ListItem li in checkListBox.Items)
{
if (li.Selected)
{
}
}
but if I've 6000 items in the... |
Forum: ASP.NET Jan 18th, 2009 |
| Replies: 7 Views: 1,677 It was in vb.net forum and it's just moved!! |
Forum: ASP.NET Jan 18th, 2009 |
| Replies: 4 Views: 817 and it's VB.NET forum anyway, you mean to provide the user with bold, underline, colors, to enrich his message, that's is normal buttons add some html tags on the message, I'm sure if you ask this... |
Forum: ASP.NET Jan 18th, 2009 |
| Replies: 7 Views: 1,677 You may ask in ASP.NET forum, it'd be better. |
Forum: ASP.NET Jan 14th, 2009 |
| Replies: 1 Views: 1,035 ASP.NET forum is better for such questions that's relevant to Web-based application using .net technology.. |
Forum: ASP.NET Apr 3rd, 2008 |
| Replies: 2 Views: 1,599 Please move your thread to ASP.NET forum http://www.daniweb.com/forums/thread117180.html
reader.GetString(coulmnNumber); or
reader.GetInt32(columnNumber); based on your column data type and its... |