- Strength to Increase Rep
- +9
- Strength to Decrease Rep
- -2
- Upvotes Received
- 17
- Posts with Upvotes
- 16
- Upvoting Members
- 11
- Downvotes Received
- 17
- Posts with Downvotes
- 14
- Downvoting Members
- 8
470 Posted Topics
Re: host your app in IIS, select your machine or create a server and provide the necessary permission to virtual directory. hope that helps. | |
Re: Retrieving information about a particular user is just as easy, using the GetUser method. This method takes the user name and returns a MembershipUser object: [CODE]MembershipUser user = Membership.GetUser("AndreaS")[/CODE] Once you've got a MembershipUser object, you know all you need to know about a particular user, and you can, for … | |
Re: why dnt you grab the whole data from Dropdown and then Bind to Treeview.. hope it has the same effect and also offers you more control while assigning parent and child elements. | |
Re: select * into yourbakuptable from yourTable | |
Re: Client Side Code [CODE] <head runat="server"> <title>Call JavaScript From CodeBehind</title> <script type="text/javascript"> function Jigsawalert() { alert('Jigsaw is coming for you !'); } </script> </head> [/CODE] On Button Click (Server Side Code) [CODE] Page.ClientScript.RegisterStartupScript(this.GetType(), "alert", "Jigsawalert();", true); [/CODE] I hope you are loking for this. Try this and let us know … | |
Re: set the theme in your mind...and get started.. you'll learn when you start the things by yourself.. | |
Re: wot r u ....a hacker or somethin? | |
Re: grab all runat = "server" controls inside form tag. on master page.. it should work.. | |
Re: [code] label lab = (label)page.findcontrol("controlname"); lab.text = "the value you want to add"; [/code] | |
Re: there is no row at position 0 means your dataset is not populated.. execute the store procedure manually and let me know the o/p | |
Re: use application variable....works... 100% | |
Re: [code]// add this to code behind.... protected void MyGridView_RowCreated(object sender, GridViewRowEventArgs e) { string rowID = String.Empty; if (e.Row.RowType == DataControlRowType.DataRow) { rowID = "row"+e.Row.RowIndex; e.Row.Attributes.Add("id","row"+e.Row.RowIndex); e.Row.Attributes.Add("onclick","ChangeRowColor(" +"'" + rowID + "'" + ")"); } } // Add this to designer page.... <script language ="javascript" type="text/javascript"> document.body.style.cursor = 'pointer'; var … | |
Re: on button click.. $("ddl").hide(); $("txtShow").show(); $('txtShow').focus(); dont forget to download jquery and dont forget to add jquery refrence in your page ! hope that helps | |
Re: are generating dynamic textbox using javascript or from code behind...? | |
Re: i made 14 videos about learning asp.net .. try them and there is lot more http://www.youtube.com/watch?v=im5sp-PY5xU | |
Re: if you are using Update Panel then [CODE] ScriptManager.RegisterClientScriptBlock(this,getType(),"Key","alert('it is working')","true");[/CODE] if not using update panel then [CODE] page.clientscript.registerstartupscript(getType(),,"Key","alert('it is working')","true");[/CODE] hope that helps | |
Re: could u be more specific..in terms of extension..? | |
Re: you are little confusing..just tell us wot do you want in brief..? | |
Re: http://www.youtube.com/watch?v=im5sp-PY5xU and it has plenty of more videos. | |
| |
Re: [url]http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx[/url] | |
Re: http://www.youtube.com/watch?v=Wluis3rdeFo http://www.youtube.com/watch?v=R_yptNtCVb4 | |
Re: check for null ...Error makes a lot sense. | |
| |
Hello there, Is there anyway i can open a ppt in web browser or may i can do things like slideshare does to view documents like ( ppt, doc ...etc ) any logic will help ! | |
Re: please dont use word urgent. no one will help you. [url]http://jqueryui.com/demos/draggable/#sortable[/url] or show me your code. anyways you got a classy design :-) | |
Re: to view single record in tableview format use formview control. setup the design the way u like and simply bind the values after filling the dataset. | |
Re: dude check for null ! |
The End.