No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
12 Posted Topics
are you using a BasePage or override any methods manually ?
Use the below mehtod [code=asp]public static void ShowMessageBox(string message) { if (!string.IsNullOrEmpty(message)) { if (message.EndsWith(".")) message = message.Substring(0, message.Length - 1); } StringBuilder sbScript = new StringBuilder(50); //Java Script header sbScript.Append("<script type='text/javascript'>" + Environment.NewLine); sbScript.Append("// Show messagebox" + Environment.NewLine); message = message.Replace("\n", "\\n").Replace("\"", "'"); sbScript.Append(@"alert( """ + message + @""" …
the concept of using classes is to interact with your database tables as objects and this of course will be better and easily when need to update certain row or record then you simply update the object and then save it. this will be of course better than handling this …
you should manipulate some CSS into your website , also i recommend to use a design tool for your design task instead of VS to have a full design options and capabilities. there are also some templates provided by Microsoft [URL="http://msdn2.microsoft.com/en-us/asp.net/aa336613.aspx"]http://msdn2.microsoft.com/en-us/asp.net/aa336613.aspx[/URL]
I'm totally recommended this tutorial for you @MSDN [URL="http://msdn2.microsoft.com/en-us/library/aa479344.aspx"]http://msdn2.microsoft.com/en-us/library/aa479344.aspx[/URL] Also the Data access tutorials at ASP.NET website [URL="http://www.asp.net/learn/data-access/"]http://www.asp.net/learn/data-access/[/URL]
It's not supported in the Upload control to upload directories instead you can compress this directory and upload it as single file.
Yes it will works , but make sure that the .NET framework is installed on the destination server. and as a better way publish your website from visual studio or package it.
you can also use a SQL datasource and assign the select statment mentioned by SheSaidImaPregy to its select query.
try javascript:window.open(’javascript:window.close();’,'_self’,'’); and please refer to this link for more details [URL="http://www.interwebby.com/blog/2006/02/04/3/"]http://www.interwebby.com/blog/2006/02/04/3/[/URL]
you have many options to do so depend on what suites you Session : [icode]Session["Values"] = TextBox1.Text;[/icode] QueryString : [icode]Response.Redirect("page.aspx?text=" + TextBox1.Text);[/icode] CrossPage Postback : Page.PreviousePage.... Cookies.
you can use another a[approach by using the new ASP.NET 2.0 control which called MultiView control and set the active view depending on selected dropdown item. [URL="http://www.c-sharpcorner.com/UploadFile/mahesh/Multiview10092005215233PM/Multiview.aspx?ArticleID=ad731f33-820e-4968-89fa-393c43872384"]http://www.c-sharpcorner.com/UploadFile/mahesh/Multiview10092005215233PM/Multiview.aspx?ArticleID=ad731f33-820e-4968-89fa-393c43872384[/URL]
Hello dskumar_85 , you have to implement your custom way either form client side as a validation or ASP.NET validator or event when the user click submit button to verify that the mail he has entered is not belongs to the excluded id's you have mentioned. Just try to substring …
The End.
Hosam Kamel