Search

You searched for the word(s): userid:875944

Matching Posts

  • Re: How to use chart in asp.net

    Hiii if you want to use chart control in asp.net application then you need to install asp.net framework 3.5 servicepack1 refer this liknks http://code-inside.de/blog-in/2008/11/27/howto-use-the-new-aspnet-chart-controls-with-aspnet-mvc/ http://weblogs.asp.net/melvynharbour/archive/2008/11/25/combining-asp-net-mvc-and-asp-net-charting-controls.aspx http://aspalliance.com/1828_Using_the_ASPNET_Chart_Control.all
    Posted to Getting Started (Forum) by brijmohans10 on 12/14/2009
  • Re: fileupload

    hii refer this link http://forums.asp.net/t/1462951.aspx
    Posted to Getting Started (Forum) by brijmohans10 on 12/14/2009
  • Re: selection of user from gridview for admin role

    Hey I am not using membership provider or any login control. I am using forms authentication with custom loginpage. Basically I have done direct entry of admin in database admin table and now i want that perticular admin should be able to give power of admin to other user of his company and there is a gridview to select users as admin role ...... I can do that but no Idea from where to start.
    Posted to Data Presentation Controls (Forum) by brijmohans10 on 11/21/2009
  • selection of user from gridview for admin role

    Hiii , I am working on admin section. In admin section there is a link named " show user ", so admin can show all the users on gridview with edit update delete functionality.I have completed all functions . Now client requirement is ,- admin can select any user as a role of admin from gridview and there is a admin table with two fields "admin" and "userid" . if any user selected by admin that user's id should be inserted into admin table , and should be displayed
    Posted to Data Presentation Controls (Forum) by brijmohans10 on 11/20/2009
    Filed under: .NET Gridview Problems, "GridView"
  • Re: Strange thing with asp.net and/or net 3.5 and ajax toolkit

    Hiii i think you have to remove text from textbox before it is opening like this i have developed it on itemcommand of datalist so when it is fired textbox is empty if (e.CommandName == "Select" ) { txtSendMessage.Text = ""; this.mdlPopup.Show(); }
  • Re: asp:HyperLink & Javascript function

    First take the anchor on aspx page <a id="asampledata" runat="server"><img alt="" src="images/btn-sampledata.jpg" width="105" height="24" align="left" /></a> Put this code in event (whatever u are using) in code behind page string link = "JavaScript: OpenmachwanWindow(\"www.yourwebsite.com" + "?pid=" + objproduct.ProductID + // open shopping cart command "&cancel_return=www.yourwebsite
    Posted to Web Forms (Forum) by brijmohans10 on 11/11/2009
  • Re: gridview paging problem

    you have written correct code but you have to write that function which is used to populate your gridview from database on pageload event protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView1.PageIndex = e.NewPageIndex; GridView1.DataBind(); BindGrid(); //this is a finction which is used to populate gridview } private void BindGrid() { SqlConnection con = new SqlConnection(WebConfigurationManager.ConnectionStrings["NeedLead"].ConnectionString); SqlCommand
    Posted to Data Presentation Controls (Forum) by brijmohans10 on 11/11/2009
  • Re: Google Map

    Hey stanly just copy and paste the code and try it once hope you will get an idea to develop dynamic google map <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Google Maps</title> <script src="http://maps.google.com/maps?file=api&v=2& key=ABQIAAAAmovnxD6Ho25XzauW_tEOoRQoplPIymIQhTsihMHGq-_iLqjfDxS-4CeUUtUg6EC5198292PVHLx5FQ" type="text
    Posted to Web Forms (Forum) by brijmohans10 on 11/10/2009
  • Re: Google Map

    Stanly there is no need to take gmap < cc1:GMap ID = "GMap1" runat = "server" />. In this case, because it is developed in javascript. So you have to just bind address and lattitude , longitude dynamicaly through database or code behind page whatever logic you can take. var address='<font size="2" face="Arial"><b>Vikram Tower</b><br/> '+ '<br/>SEO Workgroup <br/>Indore <br/> ' + ' India<br
    Posted to Web Forms (Forum) by brijmohans10 on 11/10/2009
  • Re: Google Map

    protected void Page_Load(object sender, EventArgs e) { dt = dat.GetDataTable("select * From location ", "Location"); for (int i = 0; i < dt.Rows.Count; i++) { strscript += dt.Rows[i]["Text"] + " <br/> "; strscript += dt.Rows[i]["Latitude"] + " <br/> "; strscript += dt.Rows[i]["longitude"] + " <br/> "; strscript += dt.Rows[i]["Title"] + " ╥ "; } } var pointstring='<%=strscript
    Posted to Web Forms (Forum) by brijmohans10 on 11/10/2009
Page 1 of 23 (225 items) 1 2 3 4 5 Next > ... Last »