Search results for query: *

  1. M

    Link to tab container!!

    Is it possible to when you click on a hyper link to have it open a specific tab in the tab container? Any ideas? Thx
  2. M

    Using IIS

    I dont have windows server i am just using windows 7 :S
  3. M

    Using IIS

    Hey I followed what nu said and I now have iis installed, and I get the management tools up. How ever how would I configure smtp on it so that I can send an email from a asp.net website? Do I even need iis for that or is there something within. Visual studio I need to activate? Many thanks
  4. M

    Using IIS

    Hey, I am using windows 7 and require an smtp server. I have read a few articles online and they mention that iis has one. But i have no idea how to use iis or how to access it from my computer. So anyhelp on downloading or accessing would be very benficial! Hope to hear soon! Marshall
  5. M

    Modal popup and gridview/panel

    Dim month As Integer = 5 Dim year As Integer = 2011 Dim day_num As Integer = 0 %><asp:ModalPopupExtender ID="a" runat="server" TargetControlID="lnkPopup" PopupControlID="Panel1"> </asp:ModalPopupExtender> <% While day_num < 15 test(day_num, month, year) Response.Write(day_num) %> <asp:GridView...
  6. M

    Input string was not in a correct format

    t=That is what i done! Works like a charm... i looked at the sql example you gave me using the DAY,MONTH,YEAR functions in and worked from there!! Thanks again i am new to asp have moved from php. Having thought i should just do the language that my university teaches me.
  7. M

    Input string was not in a correct format

    SOLVED!!!! I was being a tard, just had to fiddle around with a few variables!!! Many Thanks Kulrom, if you hadnt suggested looking at my SQl i never would have seen the problem!! thanks again
  8. M

    ModalPopup JS Error

    Heya i keep getting this error! Microsoft JScript runtime error: Sys.InvalidOperationException: Two components with the same id 'ModalPopupExtender1' can't be added to the application. There is infact only one control present and what ever i change the ID to the name always changes on the...
  9. M

    Input string was not in a correct format

    <asp:Label ID="lblDay" runat="server" Text="" Visible="false"></asp:Label> <asp:Label ID="lblMonth" runat="server" Text="" Visible="false"></asp:Label> <asp:Label ID="lblYear" runat="server" Text="" Visible="false"></asp:Label> <%lblDay.Text = day_num lblMonth.Text = m lblYear.Text = tYear %>...
  10. M

    Input string was not in a correct format

    day_num, m ,tYear are int. As far as i am aware there is nothing wrong with the query itself. I did test this first but it is just passing the parameters from the labels. Is there anyway of by passing the labels altogether and perhaps using just the variables them selves. In php you can just...
  11. M

    Input string was not in a correct format

    lblDay.text = day_num lblMonth.text = m lblYear.text = tYear day_num, m, tYear are all ints from other variables used elsewhere in my script. The database fields are all of type int! I fairly new to vb.net so am trying to keep it simple! Many Thanks
  12. M

    Input string was not in a correct format

    Heya, I have a script that uses an SQL datasource and a gridview! Unfortunatly it throws me the "Input string was not in a correct format" error. %> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:DriveOnConnectionString %>"...
  13. M

    In page layer pop up!

    Heya, Recently ive been toying with the idea of possibly trying to do something similar to google maps. With a pop out that lays on top of soemthing that is already there, like an image or some text/html, and maybe something simlar to the google image thing, when you click on an image it pops...
  14. M

    Only want to return the first 3 results!

    Yeah i think that wud do me. Is there a way of possibly counting how many rows are returned if. There is less than 3 by possibly using count() and group by??? Thanks
  15. M

    Only want to return the first 3 results!

    Im using a gridview and i only want to show the first 3 results! No idea where to even begin here??? Any suggestions? Thanks
  16. M

    Using the Gridview, or not

    Just a couple of questions! I am using an access 2007 database, and i have linked it to my file and can populate a gridview with my data. Is there away of echoing out the data without using the gridview, maybe into an html table? Also is it possible to hide columns in the gridview, i have...
  17. M

    Gridview in html Table

    Hey, I have a html table and use a while loop to go though and put data in the gridview for each loop. My cell formatting disappears any ideas? and the gridviews where they get printed are placed in a horizontal line. While day_num <= days_in_month 'Query for database objCommand = New...
  18. M

    Question echoing out vb variables into my html code?

    Basically atm ive created an event calendar using vb and asp.net but am having trouble putting variables within my html coding. ive been experimenting using the response.write but it screws around with my css. thanks for quick replies
  19. M

    Question echoing out vb variables into my html code?

    Hey, Is there an alternative to using response.write()? or Perhaps a method of combining both my vb code and html coding into one page. I know that i can use the <script> blocks but can i place them inside the html <body> tag>? Also is there a way of echoing out vb variables into my html...
Back
Top