yeah you should use ajax upload which is available at http://www.codeproject.com/KB/ajax/simpleajaxupload.aspx[^]
Usman Munier Xavor Corporation Pakistan
yeah you should use ajax upload which is available at http://www.codeproject.com/KB/ajax/simpleajaxupload.aspx[^]
Usman Munier Xavor Corporation Pakistan
You can also achieve this with partial classes because at the end only one page will render.
Usman Munier Xavor Corporation Pakistan
Use this line of code where you want to change the HeaderText "Cell[0]" where0 is the index of the cell GridView1.HeaderRow.Cells[0].Text = "Usman"; Best of Luck
Usman Munier Xavor Corporation Pakistan
there are some gradient effects in CSS you can also use that if you dont want to use the Image.
Usman Munier Xavor Corporation Pakistan
you need to install ajax extensions for visual studio 2005
Usman Munier Xavor Corporation Pakistan
Visual Studio Generates style tags when you drag drop any control, so just remove the style tags which are generated by the IDE. Hope this will help you out :)
Usman Munier Xavor Corporation Pakistan
thanx for the new year wish :) same to you sindhu i have not worked with VB Script so often i used to play with java script so i dont know its possible or not but in java scripts you can make your own alert look a like controls. Regards,
Usman Munier Xavor Corporation Pakistan
i dont think you can achieve this with ASP.NET becasue postback is a property of Control not the items associated with that control. for this you have do some extra work to make a custom drop down but still not sure its possible or not.
Usman Munier Xavor Corporation Pakistan
i have a better solution which i have verified as well on my many application try this. i hope this will solve your problem function TrimWhiteSpaces(s) { s=s.replace(/^\s+|\s+$/g, ""); var myArray=s.split(" "); var outPut=""; for (var i=0;i<myArray.length;i++) { if(myArray[i]!="") { outPut=outPut +" "+ myArray[i]; } } s=outPut; return s; } wish you all the best
Usman Munier Xavor Corporation Pakistan
you can also use Profiling if you dont want to use session Regards,
Usman Munier Xavor Corporation Pakistan
hi Sid, there isn't any way to change dialog box captions for alert, prompt or confirm
Usman Munier Xavor Corporation Pakistan
the first \s* leaves any number of blank spaces the inner one (\S+\s) matches one more non space characters and a space.. for example.. "asm " or "a " etc. And the outer ((\S+\s)*) matches any number of these words.. in short, this regex breaks a sentence into words.. for ex. " My Name Is ABC XYZ" can be extracted as "My_", "Name_", "Is_", "ABC_" XYZ isn't captured because it does not have a trailing space and so doesn't match (\S+\s) Regards,
Usman Munier Xavor Corporation Pakistan
<%@ Page Language="C#" %> <html> <head> <title>Encoding URL Strings</title> <script runat="server"> void UrlPathEncode() { string StrToEncode; string StrToReturn; StrToEncode = "UrlPathEncode.aspx? Arg = foo"; StrToReturn = Server.UrlPathEncode(StrToEncode); Response.Write("<a href=\"" + StrToReturn + "\">" + StrToReturn + "</a>"); } </script> </head> <body> <% UrlPathEncode(); %> </body> </html>
Usman Munier Xavor Corporation Pakistan
there is a problem with Ajax update pannel and thats why you cannot use Response.Redirect. to use this you have to take your button out of Update Pannel
Usman Munier Xavor Corporation Pakistan
Hey VanithaVasu, try this link and follow the Material Provided http://www.w3schools.com/xml/default.asp[^] Good Luck :)
Usman Munier Xavor Corporation Pakistan
Yes Abhishek it is a good idea but you can also use Microsoft's technology Silver Light for this purpose :) Good Luck
Usman Munier Xavor Corporation Pakistan
Hey Abhishek, there isnt any control in ASP.NET to show the Presentation or slides, for that you must have to use any third party control like Aspose Slides this will provide you the Power Point Management For ASP.NET, Or you have to develop a control using VSTO (Visual Studio Tools For Office). For rest of the Application ASP.NET and Ajax is Sufficient ;) . Regards, Usman Munier Xavor Corporation Pakistan